asp 去掉html中的table正则代码函数 2020-02-16 分类:ASP 标签Tags:asp,去掉,html,table,正则,代码,函数,function,outtable,str,dim,a,re,set,n,ew,regexp,pattern,global,true
'去掉html中的table代码 Function OutTable(str) dim a,re set re=new RegExp re.pattern="\<[^>]+()\>" re.global=true a=str OutTable=re.replace(a,"") End Function 以上就是【asp 去掉html中的table正则代码函数】的全部内容了,欢迎留言评论进行交流!