首页 > 编程 > Regex > 正文

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

2020-03-16 21:19:12
字体:
来源:转载
供稿:网友
用asp实现的去除内容的html标记和空格的实现代码
 
 
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 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表