标签: c# asp.net
我有一个包含单引号'的字符串 我想用两个引号''
'
''
我在str.Replace(''','''')尝试但是抛出错误
str.Replace(''','''')
如何重复它?
由于
答案 0 :(得分:3)
str.Replace("'", "''");
使用双引号括住单引号。
答案 1 :(得分:0)
使用Replace(string oldValue,string newValue)重载字符串类。
str = str.Replace("'","''")