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?
[273 byte] By [joshuapbella] at [2007-11-27 7:29:17]
# 1
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.
floundera at 2007-7-12 19:09:26 > top of Java-index,Java Essentials,Java Programming...
# 2
Next time use a more descriptive subject. "Help" conveys zero information.
jverda at 2007-7-12 19:09:26 > top of Java-index,Java Essentials,Java Programming...