-2

次のように、二重連続の一重引用符を 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 "

任意のヒント?

4

1 に答える 1

2

string.Replace代わりに入力を変更しませんstring- 代わりに新しいものを返します。変数に再度割り当てて、変更を確認します。

str = str.Replace("''", "null");
于 2015-08-28T20:54:52.770 に答える