Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

string - Replace \ with in C#

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Because you declared a without using @, the string a does not contain any double-slashes in your example. In fact, in your example, a == "acd", so Replace does not find anything to replace. Try:

string a = @"a\b\c\d";
string b = a.Replace(@"", @""); 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...