I have to split a string using Java.
Suppose I have
"India, Russia, US,UK, Asia"
and i want output like
India
Russia
US,Uk
Asia
I mean i have to split it for the combination of "comma" and "space" only.
|
|
|
Just use the String
|
|||
|
|
|
The string.split(String regex) method should do what you need. So, doing something like so, should work:
This will split a string upon finding a comma followed by one or more spaces. |
|||
|
|
You just put them after each other. (This will not cause the split to split on either one of the characters. For that you need to put it in a character class
Then put a comma, and then a space after each other:
|
|||
|
|