删除转义符“”";来自字符串
本文关键字:字符串 quot 转义 删除 | 更新日期: 2023-09-27 18:00:28
我需要从imagepth
字符串变量中删除'
字符
imagepth = "# Eval('"Name'",'"Gallary/'"" + imgwords[4] + "'"/Images/{0}'")";
您可以使用Replace方法将"''"
替换为空字符串
str = str.Replace("''", "");
Regex Unescape将从字符串中删除所有转义字符,下面是该信息的链接:
http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex.unescape.aspx
这里有一个适用于我的语法:
str = str.Replace("'"", string.Empty);