Help
Okay what I want to do is make a program that will allow a user to enter a string 5 integers, say "12345", then take those integers and put spaces in between them, so the computer will out put "1 2 3 4 5" Can anyone point me in the right direction to do this?
Regex.Or iterate over your number string, pull each number out and append to a buffer followed by a space. If you can't figure out how to NOT add a space after the last number, then just do a trim.