正则表达式 – Groovy replaceAll替换包含美元符号?

前端之家收集整理的这篇文章主要介绍了正则表达式 – Groovy replaceAll替换包含美元符号?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Groovy中使用replaceAll()并在替换字符串包含$符号(被解释为 regexp组引用)时被捕获.

我发现我必须做一个相当丑陋的双重替换:

def regexpSafeReplacement = replacement.replaceAll(/\$/,'\\\\\\$')
replaced = ("foo" =~ /foo/).replaceAll(regexpSafeReplacement)

哪里:

replacement = "$bar"

期望的结果是:

replaced = "$bar"

没有中间步骤,是否有更好的方法来执行此替换?

正如它在 docs for replaceAll中所说,你可以使用Matcher.quoteReplacement
def input = "You must pay %price%"

def price = '$41.98'

input.replaceAll '%price%',java.util.regex.Matcher.quoteReplacement( price )

另请注意,而不是双引号:

replacement = "$bar"

你想使用单引号,如:

replacement = '$bar'

否则,Groovy会将其视为模板,并在无法找到属性栏时失败

所以,举个例子:

import java.util.regex.Matcher
assert '$bar' == 'foo'.replaceAll( 'foo',Matcher.quoteReplacement( '$bar' ) )
原文链接:https://www.f2er.com/regex/356559.html

猜你在找的正则表达式相关文章