欢迎来到福编程网,本站提供各种互联网专业知识!

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

发布时间:2008-04-26 作者: 来源:转载
用asp实现的去除内容的html标记和空格的实现代码
functionnohtml(str)
dimre
Setre=newRegExp
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
setre=nothing
endfunction

相关推荐