PatternSyntaxException while trying to split by },{

余生长醉 提交于 2019-12-17 20:19:41

问题


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?


回答1:


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("\\},\\{");


来源:https://stackoverflow.com/questions/5925913/patternsyntaxexception-while-trying-to-split-by

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!