博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js 正则清除html格式
阅读量:6953 次
发布时间:2019-06-27

本文共 1534 字,大约阅读时间需要 5 分钟。

hot3.png

str = str.replace(/<span([^>])>( )\s*</span>/gi, ''); str = str.replace(/<span[^>]>/gi, ''); str = str.replace(/</span[^>]>/gi, ''); str = str.replace(/<p([^>])>( )\s*</p>/gi, ''); str = str.replace(/<p[^>]>/gi, ''); str = str.replace(/</p[^>]>/gi, ''); str = str.replace(/<h([^>])[0-9]>( )\s</h>/gi, ''); str = str.replace(/<h[^>][0-9]>/gi, ''); str = str.replace(/</h[^>][0-9]>/gi, ''); str = str.replace (/<B [^>]*>/ig, '<b>');

// var repl_i1 = /
]*>/ig; // str = str.replace (repl_i1, '
'); str = str.replace (/
]*>/ig, ''); str = str.replace (/<\/DIV>/gi, ''); str = str.replace (/<[\/\w?]+:[^>]*>/ig, ''); str = str.replace (/( ){2,}/ig, ' '); str = str.replace (/
/ig, ''); str = str.replace (/<\/STRONG>/ig, ''); str = str.replace (//ig, ''); str = str.replace (/<\/TT>/ig, ''); str = str.replace (/]*>/ig, ''); str = str.replace (/<\/FONT>/ig, ''); str = str.replace (/STYLE=\"[^\"]*\"/ig, ''); str = str.replace(/<([\w]+) class=([^ |>]*)([^>]*)/gi, '<$1$3'); str = str.replace(/<([\w]+) style="([^"]*)"([^>]*)/gi, '<$1$3'); str = str.replace(/width=([^ |>]*)([^>]*)/gi, ''); str = str.replace(/classname=([^ |>]*)([^>]*)/gi, ''); str = str.replace(/align=([^ |>]*)([^>]*)/gi, ''); str = str.replace(/valign=([^ |>]*)([^>]*)/gi, ''); str = str.replace(/<\\?\??xml[^>]>/gi, ''); str = str.replace(/<\/?\w+:[^>]*>/gi, ''); str = str.replace(/
/gi, ''); str = str.replace(/o:/gi, ''); str = str.replace(/
/gi, ''); str = str.replace(/

转载于:https://my.oschina.net/phper1234/blog/734094

你可能感兴趣的文章
Spring中Bean配置
查看>>
FTP连接时出现“227 Entering Passive Mode” 的解决方法
查看>>
以太网交换机如何工作以及MAC和PHY
查看>>
Ubuntu 设置定时crontab任务
查看>>
linux下test命令
查看>>
tshark可以实现命令行脚本分析流量
查看>>
单例模式的使用和继承
查看>>
LVM逻辑卷管理-软RAID磁盘阵列
查看>>
LVS的三种模式区别详解
查看>>
virtual box PK vmware
查看>>
wamp配置虚拟主机
查看>>
一、Scrapy的简单使用-爬虫
查看>>
Oracle Bitmap Index
查看>>
Citrix(Xenserver,Xendesktop,Xenapp,VDI,PVS)产品下载链接地址
查看>>
如何隐藏xendesktop登录时domain信息的输入
查看>>
Linux_MySQL二次整理(1)
查看>>
Linux内核LTS长期支持版生命周期
查看>>
VMware下的Linux中调整屏幕大小,分辨率问题,终于解决啦
查看>>
cxgrid打印
查看>>
ANDRO - MULTIPURPOSE OPENCART 2.X 自适应主题模板 ABC-0651-02
查看>>