For some reason, I really don't like it}, {.
This is because curly braces ( } and { ) are special characters in Java regular expressions. If you try to use them literally without escaping, it will consider a syntax error, hence your exception.
What is the correct way to avoid this line?
Also avoid backslashes by doubling them. This is for the Java escape sequence. Torn backslashes will then escape the brackets for regex.
String[] ex = exampleString.split("\\},\\{");
Boltclock
source share