所以我需要从字符串中删除转义的反斜杠(在我的例子中,路径就像“C:\Program Files (x86)\Microsoft Office\Office14\WINWORD.EXE\”)。
要替换我尝试了以下方法:
String openWith = "C:\\Program Files (x86)\\Microsoft Office\\Office14\\WINWORD.EXE";
string newString = openWith.Replace(@"\\", @"\");
openWith = openWith.Replace(@"\\", @"\");
openWith = Regex.Replace(openWith,"\\\\","\\");
但这些都不起作用!!谁能向我解释为什么会这样?
先感谢您!