public static string StripTagsRegex(string source) { if (source == null) source = ""; if (source != "") return Regex.Replace(source, @"<(.|\n)*?>", string.Empty); else return source; }
Login to post response