I am trying to replace '
with "
but to no avail.
I have tried the following:
output = output.Replace(@"'", @""");
output = output.Replace("'", @""");
output = output.Replace(@"'", """);
output = output.Replace(@"'", """");
I am trying to replace '
with "
but to no avail.
I have tried the following:
output = output.Replace(@"'", @""");
output = output.Replace("'", @""");
output = output.Replace(@"'", """);
output = output.Replace(@"'", """");
You could use this piece of code, I have added a \
out = out.Replace("'","\"");
output = output.Replace("'", "\"");