I need to split my String by spaces.
For this I tried:
str = "Hello I'm your String";
String[] splited = str.split(" ");
But it doesn’t seem to work.
I need to split my String by spaces.
For this I tried:
str = "Hello I'm your String";
String[] splited = str.split(" ");
But it doesn’t seem to work.