I am trying to break up an array I got through an API on a site, which Java has retrieved as a String
.
String[] ex = exampleString.split("},{");
A PatternSyntaxException
is thrown. For some reason, it really doesn't like },{
.
I have tried escaping it as \{
, but it says it is an illegal escape.
What is the proper way to escape this string?
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("\\},\\{");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With