What should i do if i want to split the characters of any string considering gaps and no gaps?
For example, if I have the string My Names James I want each character individually like this: M y n a m e s etc.
|
What should i do if i want to split the characters of any string considering gaps and no gaps? For example, if I have the string |
|||||||||
|
|
You mean this?
Also if you would like to get the chars of the string you could do this:
Now you just need a loop to iterate the characters and do whatever you want with them. Here a link to the java API documentation there you can find information about the String class. http://download.oracle.com/javase/6/docs/api/ I hope this was useful to you. |
|||||||||||||||
|
|
|||
|
|