C# 删除string中的反斜杠

2024-12-26 07:08:09
推荐回答(2个)
回答1:

我的天!源字符串是

{\"192.168.1.10\", \"192.168.1.11\",\"192.168.1.12\"}

你根据1L的改下,不就是可以用了吗?

string s="你的字符串";
s=s.Replace("\",string.Empty);

回答2:

string s="你的字符串";
s=s.Replace("\\",string.Empty);