using System.Text.RegularExpressions;const string HTML_TAG_PATTERN = "<.*?>"; static string StripHTML (string strString){ return Regex.Replace (strString, HTML_TAG_PATTERN, string.Empty);}
Login to post response