我需要从\
字符串变量中删除imagepth
字符:
imagepth = "# Eval(\"Name\",\"Gallary/\"" + imgwords[4] + "\"/Images/{0}\")";
答案 0 :(得分:2)
Regex Unescape将从字符串中删除所有转义字符,以下是此信息的链接:
http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex.unescape.aspx
答案 1 :(得分:2)
您可以使用Replace方法将"\\"
替换为空字符串
str = str.Replace("\\", "");