I\'m trying to match on some inconsistently formatted HTML and need to strip out some double quotes.
Current:
>
s = s.Replace("\"", "");
You need to use the \ to escape the double quote character in a string.