groovy:如何替换全部')'与 ' '

发布于 2024-08-28 09:57:52 字数 403 浏览 8 评论 0原文

我尝试了这个:

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 技术交流群。

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

发布评论

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

评论(5

北城挽邺 2024-09-04 09:57:52

与 Java 中相同:

def str2 = str1.replaceAll('\\)',' ')

您必须转义反斜杠(使用另一个反斜杠)。

Same as in Java:

def str2 = str1.replaceAll('\\)',' ')

You have to escape the backslash (with another backslash).

椒妓 2024-09-04 09:57:52

更 Groovy 的方式:def str2 = str1.replaceAll(/\)/,' ')

A more Groovy way: def str2 = str1.replaceAll(/\)/,' ')

平定天下 2024-09-04 09:57:52

您必须转义 replaceAll 内的 \

def str2 = str1.replaceAll('\\)',' ')

You have to escape the \ inside the replaceAll

def str2 = str1.replaceAll('\\)',' ')
穿透光 2024-09-04 09:57:52

只需使用不带正则表达式的方法:

def str2 = str1.replace(')',' ')

just use method without regex:

def str2 = str1.replace(')',' ')
鯉魚旗 2024-09-04 09:57:52

对于这个具体示例,其他答案是正确的;然而,在实际情况下,例如,当使用 JsonSlurperXmlSlurper 解析结果,然后替换其中的字符时,会发生以下异常:

groovy.lang.MissingMethodException: No signature of method: java.util.ArrayList.replaceAll() is applicable for argument types

考虑以下示例,

def result = new JsonSlurper().parseText(totalAddress.toURL().text)

如果想要将 result 中的 '(' 等字符替换为 ' ' 例如,以下返回上述 Exception< /code>:

def subResult = result.replaceAll('\\(',' ')

这是因为 Java 中的 replaceAll 方法仅适用于 string 类型,为此,toString() 有效。 > 应添加到使用 def 定义的变量的结果中:

def subResult = result.toString().replaceAll('\\[',' ')

The other answers are correct for this specific example; however, in real cases, for instance when parsing a result using JsonSlurper or XmlSlurper and then replacing a character in it, the following Exception occurs:

groovy.lang.MissingMethodException: No signature of method: java.util.ArrayList.replaceAll() is applicable for argument types

Consider the following example,

def result = new JsonSlurper().parseText(totalAddress.toURL().text)

If one wants to replace a character such as '(' in result with a ' ' for example, the following returns the above Exception:

def subResult = result.replaceAll('\\(',' ')

This is due to the fact that the replaceAll method from Java works only for string types. For this to work, toString() should be added to the result of a variable defined using def:

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