Just like the title says.
I\'ve tried doing str.Replace(\"\",\"0\"); but it gave me error because oldValue has zero length.
str.Replace(\"\",\"0\");
oldValue
Is it possi
In method() you can do:
return String.IsNullOrEmpty(retString) ? "0" : retString;