Answers for "display the content of html without tags in c#"

1

c# strip html tags

public static string StripHTML(string input)
{
   return Regex.Replace(input, "<.*?>", String.Empty);
}
Posted by: Guest on July-03-2020

Code answers related to "display the content of html without tags in c#"

Browse Popular Code Answers by Language