I have a long string (a path) with double backslashes, and I want to replace it with single backslashes:
string a = "a\b\c\d";
string b = a.Replace(@"", @"");
This code does nothing...
b
remains "a\b\c\d"
I also tried different combinations of backslashes instead of using @
, but no luck.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…