替换双连续单引号

本文关键字:单引号 连续 替换 | 更新日期: 2023-09-27 18:10:14

我正在尝试将双连续单引号替换为null,如下所示:

//my string is " replace '' to null "
str.Replace("''", "null");
//now my string is " replace null to null "

但是发生了:

//my string is " replace '' to null "
str.Replace("''", "null");
//sadly my string still is " replace '' to null "

提示吗?

替换双连续单引号

string.Replace不修改输入string,而是返回一个新的。把它重新赋值给你的变量,看看变化。

str = str.Replace("''", "null");