欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

正则去除html字符串中的注释、标签、属性

程序员文章站 2023-01-02 11:44:45
var str = 'ProsperLee'; document.write(str.replace(//gmi, '')); // 去除HTML中的注释 document.write(str.replace(/]+>/g,"")); // 去除HTML标签 document.write(str.r... ......
var str = '<!-- 注释1 --><h1 style="color:#00ff00;text-align: center;">prosperlee<!-- 注释 --></h1>';
        document.write(str.replace(/<!--[\w\w\r\n]*?-->/gmi, '')); // 去除html中的注释
        document.write(str.replace(/<[^>]+>/g,"")); // 去除html标签
        document.write(str.replace(/(<[^\s\/>]+)\b[^>]*>/gi,"$1>")); // 去除html标签中的属性

正则去除html字符串中的注释、标签、属性