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

I'm trying to break up an array I got through an API on a site, which Java has retrieved as a String. Whenever I run the following code:

String[] ex = exampleString.split("},{");

Java gives me a PatternSyntaxException. For some reason, it really doesn't like },{. I've tried escaping it, but it says

\{

is an illegal escape. What is the proper way to escape this String?

share|improve this question

1 Answer

For some reason, it really doesn't like },{.

This is because braces (} and {) are special characters in Java regular expressions. If you try to use them literally without escaping, it's considered a syntax error, hence your exception.

What is the proper way to escape this String?

Escape the backslashes too, by doubling them. This is for Java string escapes. The escaped backslashes will then escape the braces for the regex.

String[] ex = exampleString.split("\\},\\{");
share|improve this answer
Thanks that worked perfectly, I appreciate it! – CMahaff May 8 '11 at 17:51

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.