当前位置: 代码迷 >> Web Service >> 求正则表达式一则解决思路
  详细解决方案

求正则表达式一则解决思路

热度:215   发布时间:2016-05-02 02:48:06.0
求正则表达式一则
HTML code
<TABLE border=1 cellSpacing=0 cellPadding=0><TBODY><TR><TD vAlign=top width=95></TD><TD vAlign=top width=95><P align=left>&nbsp;</P></TD><TD vAlign=top width=95><P align=left>&nbsp;</P></TD><TD vAlign=top width=95><P align=left>&nbsp;</P></TD><TD vAlign=top width=95><P align=left>&nbsp;</P></TD><TD vAlign=top width=95><P align=left>&nbsp;</P></TD></TR><TR></TBODY></TABLE>

如题:想用js把<P align=left>&nbsp;</P>替换为空;

求助,谢谢。


------解决方案--------------------
var html;
html=html.replace(/<p align=left>\&nbsp;<\/P>/gi,'');