- 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
相关文章
- 正则表达式去除字符串左右空格函数 调用方法是,str.Trim();
- 使用ASP.net MVC和JQuery将HTML标记(代码)作为字符串发布
- 如何使用正则表达式删除其类的整个HTML标记(及其内容)?
- PHP在字符串中获取html注释并在标记中包装。正则表达式或DOM ?
- php正则去除网页中所有的html,js,css,注释的实现方法
- asp自动补全html标签自动闭合(正则表达式)
- asp采集HTML内容常用代码,详讲正则采集
- 收集一些常用的正则表达式(匹配中文字符、匹配双字节字符、匹配HTML标记、匹配空行 and so on~~~)
- 无法弄清楚如何使用正则表达式获取HTML标记中包含的模式[重复]
- ASP.NET 去除所有HTML标记的方法