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?