c# - How to replace " " " with space -
i trying replace double quotes space it's not working, says syntax error,
"'asd"asd', 'asdasda"sdsa'" // string pattern getting "somehow" string b = a.replace(""", " "));
you have escape "
backslash:
string b = a.replace("\"", " ");
where string a
bla bla " bla " bla bla
Comments
Post a Comment