Groovy:将路径中的 / 替换为 \
在 Groovy 中如何用 \
替换 /
?以便 “//10.1.1.1/temp/test”
变为 “\\10.1.1.1\temp\test”
。
"//10.1.1.1/temp/test".replaceAll(/'\\/'/,'\\')
<-- ?不起作用
有人有想法吗?
感谢您的任何答复。
How would you replace /
with \
in Groovy? So that"//10.1.1.1/temp/test"
becomes "\\10.1.1.1\temp\test"
.
"//10.1.1.1/temp/test".replaceAll(/'\\/'/,'\\')
<-- ? doesn't work
Does anyone have an idea?
Thanks for any answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看这个
"//10.1.1.1/temp/test".replaceAll("/","\\\\")
。"\\\\"
构成一个反斜杠。Look at this
"//10.1.1.1/temp/test".replaceAll("/","\\\\")
."\\\\"
makes a single backslash.