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