[\\s\\S]*?<\\/style>"; ...">
美文网首页
常用正则

常用正则

作者: 极客诗人 | 来源:发表于2018-07-04 22:27 被阅读6次

过滤html

string regEx_style = "<style[^>]*?>[\\s\\S]*?<\\/style>"; //定义style的正则表达式    string regEx_script = "<script[^>]*?>[\\s\\S]*?<\\/script>"; //定义script的正则表达式      string regEx_html = "<[^>]+>"; //定义HTML标签的正则表达式      htmlStr = Regex.Replace(htmlStr, regEx_style, "");//删除css    htmlStr = Regex.Replace(htmlStr, regEx_script, "");//删除js    htmlStr = Regex.Replace(htmlStr, regEx_html, "");//删除html标记    htmlStr = Regex.Replace(htmlStr, "\\s*|\t|\r|\n", "");//去除tab、空格、空行    htmlStr = htmlStr.Replace(" ", "");    htmlStr = htmlStr.Replace(""", "");//去除异常的引号" " "    htmlStr = htmlStr.Replace(""", "");    return htmlStr.Trim();

相关文章

网友评论

      本文标题:常用正则

      本文链接:https://www.haomeiwen.com/subject/ptoyuftx.html