groovy:如何替换全部')'与 ' '
我尝试了这个:
def str1="good stuff 1)"
def str2 = str1.replaceAll('\)',' ')
但出现以下错误:
异常org.codehaus.groovy.control.MultipleCompilationErrorsException:启动失败,Script11.groovy:3:意外的字符:'\'@第3行,第29列。1个错误在org.codehaus.groovy.control.ErrorCollector(failIfErrors) :296)
所以问题是我该怎么做:
str1.replaceAll('\)',' ')
I tried this:
def str1="good stuff 1)"
def str2 = str1.replaceAll('\)',' ')
but i got the following error:
Exception org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed, Script11.groovy: 3: unexpected char: '\' @ line 3, column 29. 1 error at org.codehaus.groovy.control.ErrorCollector(failIfErrors:296)
so the question is how do I do this:
str1.replaceAll('\)',' ')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
与 Java 中相同:
您必须转义反斜杠(使用另一个反斜杠)。
Same as in Java:
You have to escape the backslash (with another backslash).
更 Groovy 的方式:def str2 = str1.replaceAll(/\)/,' ')
A more Groovy way:
def str2 = str1.replaceAll(/\)/,' ')
您必须转义
replaceAll
内的\
You have to escape the
\
inside thereplaceAll
只需使用不带正则表达式的方法:
just use method without regex:
对于这个具体示例,其他答案是正确的;然而,在实际情况下,例如,当使用
JsonSlurper
或XmlSlurper
解析结果,然后替换其中的字符时,会发生以下异常:考虑以下示例,
如果想要将
result
中的'('
等字符替换为' '
例如,以下返回上述Exception< /code>:
这是因为 Java 中的
replaceAll
方法仅适用于string
类型,为此,toString()
有效。 > 应添加到使用def
定义的变量的结果中:The other answers are correct for this specific example; however, in real cases, for instance when parsing a result using
JsonSlurper
orXmlSlurper
and then replacing a character in it, the following Exception occurs:Consider the following example,
If one wants to replace a character such as
'('
inresult
with a' '
for example, the following returns the aboveException
:This is due to the fact that the
replaceAll
method from Java works only forstring
types. For this to work,toString()
should be added to the result of a variable defined usingdef
: