using System.Text.RegularExpressions; ... public static string RemoveHTML(string in_HTML) { return Regex.Replace(in_HTML, "<(.|\n)*?>", ""); }
Posted by at 29th January, 2009
using System.Text.RegularExpressions; ... public static string RemoveHTML(string in_HTML) { return Regex.Replace(in_HTML, "<(.|\n)*?>", ""); }
You must be logged in to post a comment.