I\'m trying to match on some inconsistently formatted HTML and need to strip out some double quotes.
Current:
>
c#: "\"", thus s.Replace("\"", "")
"\""
s.Replace("\"", "")
vb/vbs/vb.net: "" thus s.Replace("""", "")
""
s.Replace("""", "")