威凡网全力打造:网页编程、软件开发编程、平面设计、服务器端开发、操作系统等在线学习平台!学编程,上威凡网!
ASP教程>> ASP基础 应用技巧 数据库相关 ASP类 存储过程 FSO专栏 ASP其他
当前位置:首页 > ASP教程 > 应用技巧
上一节 下一节
 用正则表达式写的HTML分离函数
存成.asp文件,执行,你用asphttp抓内容的时候用这个很爽,当然自己要改进一下了

<%
option explicit

function striphtml(strhtml)
'strips the html tags from strhtml

dim objregexp, stroutput
set objregexp = new regexp

objregexp.ignorecase = true
objregexp.global = true
objregexp.pattern = "<.+?>"

'replace all html tag matches with the empty string
stroutput = objregexp.replace(strhtml, "")

'replace all < and > with < and >
stroutput = replace(stroutput, "<", "<")
stroutput = replace(stroutput, ">", ">")

striphtml = stroutput 'return the value of stroutput

set objregexp = nothing
end function


%>

<form method="post" id=form1 name=form1>
<b>enter an html string:</b><br>
<textarea name="txthtml" cols="50" rows="8" wrap="virtual"><%=request("txthtml")%></textarea>
<p>
<input type="submit" value="strip html tags!" id=submit1 name=submit1>
</form>

<% if len(request("txthtml")) > 0 then %>
<p><hr><p>
<b><u>view of string <i>with no</i> html stripping:</u></b><br>
<xmp>
<%=request("txthtml")%>
</xmp><p>
<b><u>view of string <i>with</i> html stripping:</u></b><br>
<pre>
<%=striphtml(request("txthtml"))%>
</pre>
<% end if %>


申明:本教程内容由威凡网编辑整理并提供IT程序员分享学习,如文中有侵权行为,请与站长联系(QQ:254677821)!
上一节 下一节
相关教程  
其他教程  
ASP基础
应用技巧
数据库相关
ASP类
存储过程
FSO专栏
ASP其他

违法和不良信息举报中心】邮箱:254677821@qq.com
Copyright©威凡网 版权所有 苏ICP备2023020142号
站长QQ:254677821