2011-03-04 216 views

回答

36

您需要使用正確的轉義序列的報價符號,你可以找到逃生sequencies here更多的信息。

String stringWithSingleQuotes= "src='http://...';"; 
String withDoubleQuotes = stringWithSingleQuotes.Replace("'","\""); 
5
var abc = "hello the're"; 
abc = abc.Replace("'","\""); 
2
string str; 
str=strtext.Replace('"','\''); 
+0

是我們與'你的代碼替換「?我認爲它應該是相反的。 – Kurkula 2016-07-23 01:27:15

相關問題