Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How do I split a string with any whitespace chars as delimiters?

Yes, I tried to search it on google and stackoverflow, but no good results. I have a string, lets say: "Lets do some coding in Java" and I would like to got strings (split it on whitespaces):

Lets, do, some, coding, in, Java

I used string.split("\\s") for this, but know I need to use regex instead. Any ideas?

share|improve this question
1  
"\\s" is a Regex for a single whitespace character, see the Pattern class – jlordo Nov 21 '12 at 15:27
2  
Using google with "java regex split" gives you all the information you need.., – Forlan07 Nov 21 '12 at 15:27
If you see the documentation of String.split(), it takes Regex as parameter only to split. – Rohit Jain Nov 21 '12 at 15:27
String.split() takes a regexp as parameter so your question doesn't make sense. – Aaron Digulla Nov 21 '12 at 15:27
2  
Did you even look at the JavaDocs for split docs.oracle.com/javase/1.4.2/docs/api/java/lang/…. It cleary says that it takes a regex. – Craig Suchanec Nov 21 '12 at 15:29
show 1 more comment

marked as duplicate by Rohit Jain, UmNyobe, Robin, A. R. S., Marko Topolnik Nov 21 '12 at 15:30

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

to specify space as splitting char, you can pass " " as parameter to String#split. Example:

String test="Lets do some coding in Java";
    for(String token : test.split(" "))
        System.out.println(token);
share|improve this answer
Better to use \\s+ for splitting on any number of spaces. – Rohit Jain Nov 21 '12 at 15:31
it won't work it has multiple space.String s ="hello sorry". – sunleo Nov 21 '12 at 15:32
It has one space, my code would split "hello sorry" in "hello" and "sorry" (try). It won't handle the case in which the test phrase has multiple spaces, as @RohitJain pointed out. Your solution is better than mine because is more general. – avalori Nov 21 '12 at 15:52
String str = "Hello How are you";
String arrayString[] = str.split("\\s+") 

Please use this

share|improve this answer
is this ok, he mentioned that as String that's why I followed.Sorry for confusion. – sunleo Nov 21 '12 at 15:31

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