尝试按 },{ 分割时出现 PatternSyntaxException

发布于 2024-11-05 09:48:03 字数 271 浏览 1 评论 0原文

我正在尝试分解通过网站上的 API 获得的数组,Java 已将其作为 String 检索。

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

抛出PatternSyntaxException。由于某种原因,它确实不喜欢 },{。 我尝试将其转义为 \{,但它说这是非法转义。

转义该字符串的正确方法是什么?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

圈圈圆圆圈圈 2024-11-12 09:48:03

出于某种原因,它确实不喜欢},{。

这是因为大括号(}{)是 Java 正则表达式中的特殊字符。如果您尝试按字面意思使用它们而不转义,则会被视为语法错误,因此会出现异常。

转义该字符串的正确方法是什么?

通过将反斜杠加倍来转义它们。这是用于 Java 字符串转义的。然后,转义的反斜杠将转义正则表达式的大括号。

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

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("\\},\\{");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文