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.

The Java offical documentation states:

"he string "boo:and:foo", for example, yields the following results with these expressions Regex Result : { "boo", "and", "foo" }"

And that's the way I need it to work. However, if I run this:

public static void main(String[] args){
        String test = "A|B|C||D";

        String[] result = test.split("|");

        for(String s : result){
            System.out.println(">"+s+"<");
        }
    }

it prints:

><
>A<
>|<
>B<
>|<
>C<
>|<
>|<
>D<

Which is far from what I would expect:

>A<
>B<
>C<
><
>D<

Why is this happening?

Thanks in advance

share|improve this question

1 Answer

up vote 17 down vote accepted

You need to escape that special character using \\

test.split("\\|");
share|improve this answer
It would be really nice if they included that on the official documentation wouldn't it be? :) Thanks for the quick answer – Hallucynogenyc May 29 '12 at 9:12
2  
It is, split() method takes regex and | is special character for reg ex – Jigar Joshi May 29 '12 at 9:16
I see. Thanks again. – Hallucynogenyc May 29 '12 at 9:22
You are welcome :) – Jigar Joshi May 29 '12 at 9:23

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.