Question How to separate a line of words with space and punctuations?

Gravano

New member
Joined
Jun 7, 2012
Messages
3
Programming Experience
Beginner
Hi, I am trying to separate my string of words with space and punctuations.
For example, my string of words are: IHAVESTUFFTOSETTLEGIVEMESOMETIME
How do you make it to follow my original string: I have stuff to settle, give me some time. ?

Appreciate any help available!
 
So, you're saying that you have a string of letters and you want to insert spaces and punctuation into it? That would be magic. Unless you specify the series of letters that represent the words you are out of luck.
 
Looks like I am out of luck then!
Was wondering if it was possible if it could follow my original string from my first textbox?
I have 3 textboxes.
1 with the original statement, 1 with the statement without spaces and punctuation (which I used the string.replace) and last 1 for reverting it back.
I am still learning from scratch and experimenting with string.(functions?) so I am not very sure what is possible and what is not ^^
 
What you wanted to do originally would imply a computer that knows English. Computers do not know English, they know binary, hexadecimal, ASCII and the like. If you can find a way for the computer to interpret your phrase with accuracy in real time, you will become a rich rich man.
 
Back
Top