How to split a String by space

What you have should work. If, however, the spaces provided are defaulting to… something else? You can use the whitespace regex:

str = "Hello I'm your String";
String[] splited = str.split("\\s+");

This will cause any number of consecutive spaces to split your string into tokens.

Leave a Comment