4

你会如何/\Groovy 替换?这样 "//10.1.1.1/temp/test"就变成了"\\10.1.1.1\temp\test"

"//10.1.1.1/temp/test".replaceAll(/'\\/'/,'\\')<-- ? 不工作

有人有想法吗?

感谢您的任何回答。

4

2 回答 2

12

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

于 2011-08-03T10:53:35.510 回答
-1

请检查这个

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

最后你得到像

'D:\folder1\folder2\yourfile' 
于 2015-10-09T10:19:49.150 回答