Esempio n. 1
0
 private static string EraseTags(string html, string tags)
 {
     html = GenUtils.RegexReplace(html, "<\\*\\s*(" + tags + ")[^>]+\\s*>", "");
     return(html);
 }