gpt4 book ai didi

java - 不匹配的关闭 ')' 模式异常

转载 作者:行者123 更新时间:2023-11-30 05:51:11 25 4
gpt4 key购买 nike

我有这个正则表达式:

"\\(d+)(,)\\(w+)(,)\\(w+)(,)\\(w+)(,)\\(\")(d+)(,)(d+)(.)(d+)(\")(,)\\(w+)(,)\\(w+)(,)\\(w+)";

我收到这条消息:

Unmatched closing ')' near index 3

有人可以提示我我的正则表达式有什么问题吗?

最佳答案

您正在转义第一个括号(因此它的含义将是字面意思)而不是下一个括号,因此它是一个无效的正则表达式。

"\\(d+)(,)
^ ^
| |
--+- // You have escaped this one...
|
- // ...but not this one.

关于java - 不匹配的关闭 ')' 模式异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13041522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com