Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

c# strip html tags

public static string StripHTML(string input)
{
   return Regex.Replace(input, "<.*?>", String.Empty);
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #strip #html #tags
ADD COMMENT
Topic
Name
6+3 =