使用java正则表达式当模式包含左括号时如何替换所有

发布于 2024-08-07 11:34:11 字数 397 浏览 7 评论 0原文

我有一个看起来像这样的字符串: mynum(1234) 和 mynum( 123) 和 mynum ( 12345 ) 以及最后的 mynum(#123)

我想在括号中的数字前面插入一个 # 所以我有: mynum(#1234) 和 mynum(#123) 和 mynum (#12345) 最后是 mynum(#123)

我该怎么做? 使用正则表达式模式匹配器和 replaceAll 会阻塞数字前面的 ( ,我得到一个

java.util.regex.PatternSyntaxException:附近的未封闭组

异常。

I have a string that looks like this:
mynum(1234) and mynum( 123) and mynum ( 12345 ) and lastly mynum(#123)

I want to insert a # in front of the numbers in parenthesis so I have:
mynum(#1234) and mynum( #123) and mynum ( #12345 ) and lastly mynum(#123)

How can I do this?
Using regex pattern matcher and a replaceAll chokes on the ( in front of the number and I get an

java.util.regex.PatternSyntaxException: Unclosed group near ...

exception.

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

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

发布评论

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

评论(1

夜司空 2024-08-14 11:34:11

尝试:

String text = "mynum(1234) and mynum( 123) and foo(123) mynum ( 12345 ) and lastly mynum(#123)";
System.out.println(text.replaceAll("mynum\\s*\\((?!\\s*#)", "$0#"));

一个小解释:

将每个模式:替换

mynum   // match 'mynum'
\s*     // match zero or more white space characters
\(      // match a '('
(?!     // start negative look ahead
  \s*   //   match zero or more white space characters
  #     //   match a '#'
)       // stop negative look ahead

为子字符串:

$0#

其中 $0 保存与整个正则表达式匹配的文本。

Try:

String text = "mynum(1234) and mynum( 123) and foo(123) mynum ( 12345 ) and lastly mynum(#123)";
System.out.println(text.replaceAll("mynum\\s*\\((?!\\s*#)", "$0#"));

A small explanation:

Replace every pattern:

mynum   // match 'mynum'
\s*     // match zero or more white space characters
\(      // match a '('
(?!     // start negative look ahead
  \s*   //   match zero or more white space characters
  #     //   match a '#'
)       // stop negative look ahead

with the sub-string:

$0#

Where $0 holds the text that is matched by the entire regex.

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