Groovy replaceAll哪里有替换包含美元符号?

时间:2012-05-25 14:16:00

标签: regex groovy

我在Groovy中使用replaceAll()并在替换字符串包含$符号(被解释为正则表达式组引用)时被捕获。

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

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

其中:

replacement = "$bar"

期望的结果是:

replaced = "$bar"

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

2 个答案:

答案 0 :(得分:8)

正如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会将其视为模板,并在无法找到属性时失败bar

所以,举个例子:

import java.util.regex.Matcher
assert '$bar' == 'foo'.replaceAll( 'foo', Matcher.quoteReplacement( '$bar' ) )

答案 1 :(得分:0)

在要替换的gradle文件中使用单引号和双斜线:

'\\$bar'