我想更換該字符串添加斜線串
'10001'
到
\'10001\'
下面的代碼不工作:
Console.WriteLine(content);
content.Replace("'", "\\'");
Console.WriteLine(content);
,甚至這樣的:
Console.WriteLine(content);
content.Replace("'", "\\\\'");
Console.WriteLine(content);
價值content
正是之前和之後replace
相同,即'10001'
我使用VC#2010速成。感謝幫助。
替換不更改內容對象。它會返回新值。字符串在C中是不可變的# – wiero