正则表达式替换table表格中的样式与空标记(保留rowspan与colspan)

完整测试代码



原来的代码是这样的

//普通替换
function doRepNormal(s){
var str=s.replace(/


\s*?<\/p>/ig,""); str=str.replace(/

\s*?
\s*?<\/p>/ig, ""); str=str.replace(/

(\s|\ \;| | |\xc2\xa0)*?<\/p>/ig, ""); str=str.replace(/

\s*?<\/p>/ig,""); str=str.replace(/

 <\/p>/ig,""); str=str.replace(/
\n <\/p>/ig, "

"); str=str.replace(/
\s*?<\/p>/ig, "

"); str=str.replace(/\s*?<\/p>/ig, "

"); str=str.replace(/
\n <\/p>/ig, "

"); str=str.replace(/
\n <\/p>/ig, "

"); //表格替换 str=str.replace(/]*>/ig, ""); str=str.replace(/]*>[\s\S]*<\/table>/gi,function(match,capture){ match=match.replace(/style[\s]*=[\s]*("|')[^<>"']*?\1/gi,''); match=match.replace(/cl\ass[\s]*=[\s]*("|')[^<>"']*?\1/gi,''); match=match.replace(/id[\s]*=[\s]*("|')[^<>"']*?\1/gi,''); match=match.replace(/]*>|<\/font>/gi,''); return match; }); str=str.replace(/]*>/gi,function(match,capture){ match=match.replace(/style[\s]*=[\s]*("|')[^<>"']*?\1/gi,''); match=match.replace(/cl\ass[\s]*=[\s]*("|')[^<>"']*?\1/gi,''); match=match.replace(/id[\s]*=[\s]*("|')[^<>"']*?\1/gi,''); return match; }); return str; }

后台修改成这样的

str=str.replace(/]*>/ig, "
"); str=str.replace(/]*>[\s\S]*<\/table>/gi,function(match,capture){ match=match.replace(/(style|class|id)[\s]*=[\s]*("|')[^<>"']*?\2/gi,''); match=match.replace(/<\/?span[^<>]*>/gi,''); match=match.replace(/

]*>|<\/p>/gi,''); match=match.replace(/]*>|<\/font>/gi,''); return match; });

经过测试发现chrome中正常,但在ie8与ie7中有bug无法实现class与id的替换,文档声明都会影响一些结果,真是涨了见识

正好看到别的人分享的先留存一份,后续更新

用正则表达式取出table中的所有行(支持嵌套table)

此是通过csdn询问得高人之手写的。
谢谢gzdiablo

表达式:

]*>(?:(?:\s|\S)*?(?=)(?(]*>(?:\s|\S)*?(?:

|(?:(?:]*>(?:\s|\S)*?(?:\s|\S)*?)*?))(?:\s|\S)*?|))*

一条表达式就可以获取你想要的
写得好辛苦
测试:

 
 
 
 
   
 
 
   

-------------------获取3个match

============================================match1
 
     
   


     
       
       

   

 

     
       
         
       
     
 

     
 
==============================================match2
 
     
     
   

     


       
       
   
 

 
==============================================match3
 
   
     
       
       

   

 

     
     
 

以上就是正则表达式替换table表格中的样式与空标记(保留rowspan与colspan)的详细内容,更多关于正则表达式替换table表格的资料请关注脚本之家其它相关文章!

你可能感兴趣的:(正则表达式替换table表格中的样式与空标记(保留rowspan与colspan))