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.

Im using string.split(regex) so cut my string after every ',' but i dont know how to cut after the space that follows after the ','.

String content = new String("I, am, the, goddman, Batman");
content.split("(?<=,)");

gives me the array

{"I,"," am,"," the,"," goddman,"," Batman"}

what i actually want is

{"I, ","am, ","the, ","goddman, ","Batman "}

can anyone help me please?

share|improve this question
1  
content.split("(?<=, )");? – Benjamin Udink ten Cate May 9 '12 at 19:21
1  
@BenjaminUdinktenCate: Now post it as an answer :) – carlpett May 9 '12 at 19:22

2 Answers

up vote 1 down vote accepted

Using a positive lookbehind will not allow you to perform the match in case the string is separated with multiple spaces.

public static void main(final String... args) {
    // final Pattern pattern = Pattern.compile("(?<=,\\s*)"); won't work!
    final Pattern pattern = Pattern.compile(".+?,\\s*|.+\\s*$");
    final Matcher matcher = 
                  pattern.matcher("I,    am,       the, goddamn, Batman    ");
    while (matcher.find()) {
        System.out.format("\"%s\"\n", matcher.group());
}

Output:

"I,    "
"am,       "
"the, "
"goddamn, "
"Batman    "
share|improve this answer

Just add the space into your regex:

http://ideone.com/W8SaL

content.split("(?<=, )");

Also, you typoed goddman.

share|improve this answer
Oh god, im so dumb...thanks. – user1369594 May 9 '12 at 19:32
This won't work if the string is separated with a comma followed by multiple spaces. – Sahil Muthoo May 9 '12 at 20:04

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.