如何用String.Replace()将“\\”替换为“\”

时间:2013-05-13 16:05:30

标签: c# string replace

我想将"\\"替换为"\"(两个只替换一个)。 我正在使用:

string myPath = Path.GetFullPath(fileName);    
string correctPath = myPath.Replace(@"\\", @"\");

但没有任何反应,correctPath中的字符串继续"\\"

1 个答案:

答案 0 :(得分:10)

您可能在调试器中暂停时查看字符串。将值打印到控制台窗口,没关系。

string myPath = @"hello\\world";
string correctPath = myPath.Replace(@"\\", @"\");
Console.Write(correctPath);
Console.Read();