Answers for "how to remove all html tags from a string 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 "how to remove all html tags from a string in c#"

Browse Popular Code Answers by Language