Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to split a string like

"first     middle  last" 

with String.split(). But when i try to split it I get

String[] array = {"first","","","","middle","","last"}

I tried using String.isEmpty() to check for empty strings after I split them but I it doesn't work in android. Here is my code:

String s = "First  Middle Last";
String[] array = s.split(" ");
for(int i=0; i<array.length; i++) {
  //displays segmented strings here
}

I think there is a way to split it like this: {"first","middle","last"} but can't figure out how.

Thanks for the help!

share|improve this question

3 Answers

Since the argument to split() is a regular expression, you can look for one or more spaces (" +") instead of just one space (" ").

String[] array = s.split(" +");
share|improve this answer
hmm i never thought about using just " +" i'm always more conventional using "\\s+". Good idea! – Kevin Apr 9 '12 at 20:36
1  
@Kevin, well, \s includes more than just spaces. – rid Apr 9 '12 at 20:37
Thanks this helped a lot!!! – user1322663 Apr 10 '12 at 16:05
1  
I also suggest to add trim() before split(): s.trim().split(" +") to handle cases like " first middle last " – gamliela Dec 26 '12 at 12:42

try using this s.split("\\s+");

share|improve this answer
+1 for an adequate answer! – Ginger Head Apr 27 '12 at 14:26

Since split() uses regular expressions, you can do something like s.split("\\s+") to set the split delimiter to be any number of whitespace characters.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.