如何在C#中的字符串中用双引号(“)替换单引号(')?
答案 0 :(得分:40)
您需要为引号符号使用正确的转义序列,您可以找到有关转义序列here的更多信息。
String stringWithSingleQuotes= "src='http://...';";
String withDoubleQuotes = stringWithSingleQuotes.Replace("'","\"");
答案 1 :(得分:6)
var abc = "hello the're";
abc = abc.Replace("'","\"");
答案 2 :(得分:1)
string str;
str=strtext.Replace('"','\'');