c# - Strip double quotes from a string in .NET -


I am trying to match some incompatible formatted HTML and I have to draw some double quotation marks.

Current:

  & lt; Input type = "hidden" & gt;  

Target:

  & lt; Input type = hidden & gt;  

This is incorrect because I am not running it properly:

s = s.Replace ("", "");

This is incorrect because the blank character character (for my information) is not:

  s = s.Replace ('', '');  

What is the syntax / escape character combination to replace double quotes with an empty string?

Comments

Popular posts from this blog

c# - ListView onScroll event -

PHP - get image from byte array -

Linux Terminal Problem with Non-Canonical Terminal I/O app -