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

email - PHP mail error ... failed to open stream : permission denied -

sql server - SQL Query - Delete duplicates if more than 3 dups? -

c# 3.0 - Issue with getting 2 chars from string using indexer -