字符串将单引号替换为C#中的双引号

时间:2011-03-04 03:19:16

标签: c# string replace

如何在C#中的字符串中用双引号(“)替换单引号(')?

3 个答案:

答案 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('"','\'');