当前位置:Gxlcms > 正则表达式 > asp去除html标记与空格的正则

asp去除html标记与空格的正则

时间:2021-07-01 10:21:17 帮助过:25人阅读

function nohtml(str) 
dim re 
Set re=new RegExp 
       re.IgnoreCase =true 
       re.Global=True 
       re.Pattern="(\<.[^\<]*\>)" 
       str=re.replace(str," ") 
       re.Pattern="(\<\/[^\<]*\>)" 
       str=re.replace(str," ") 
       str=replace(str," ","")
       str=replace(str," ","")
       nohtml=str 
       set re=nothing 
end function

人气教程排行