Groovy:将路径中的 / 替换为 \

发布于 2024-11-28 01:47:53 字数 251 浏览 3 评论 0原文

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

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

发布评论

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

评论(2

川水往事 2024-12-05 01:47:53

看看这个 "//10.1.1.1/temp/test".replaceAll("/","\\\\")"\\\\" 构成一个反斜杠。

Look at this "//10.1.1.1/temp/test".replaceAll("/","\\\\"). "\\\\" makes a single backslash.

骑趴 2024-12-05 01:47:53

请检查一下

 String path = 'D:/folder1/folder2/yourfile' 
 String result = path.replaceAll( "/","\\");

最后你得到的结果是这样的

'D:\folder1\folder2\yourfile' 

Please check this

 String path = 'D:/folder1/folder2/yourfile' 
 String result = path.replaceAll( "/","\\");

Finally you get result like

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