Answers for "c# strip \ and tags"

1

c# strip html tags

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

Browse Popular Code Answers by Language