I'm trying to replace double consecutive single quotation marks to null, like this:
//my string is " replace '' to null "
str.Replace("''", "null");
//now my string is " replace null to null "
But this is happening:
//my string is " replace '' to null "
str.Replace("''", "null");
//sadly my string still is " replace '' to null "
Any tips?