网络编程 
首页 > 网络编程 > 浏览文章

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

(编辑:jimmy 日期: 2024/11/18 浏览:3 次 )
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,"&nbsp;","")
       str=replace(str," ","")
       nohtml=str 
       set re=nothing 
end function
上一篇:JScript 8.0 正则表达式语法
下一篇:asp正则表达式匹配数字$数字$数字$