主页 > 知识库 > 用正则表达式写的HTML分离函数

用正则表达式写的HTML分离函数

热门标签:为什么外呼系统需要预存话费呢 办理400电话一年多少钱 企数外呼系统能用多久 兰州智能语音电销机器人功能 咸阳销售外呼系统 常用地图标注范围点 外呼回拨系统图片 宁夏怎么申请400电话 离线电子地图标注软件注册
存成.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 %>

标签:咸阳 丽江 温州 家电维修 昌都 铁岭 泰州 昆明

巨人网络通讯声明:本文标题《用正则表达式写的HTML分离函数》,本文关键词  用,正则,表达式,写的,HTML,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《用正则表达式写的HTML分离函数》相关的同类信息!
  • 本页收集关于用正则表达式写的HTML分离函数的相关信息资讯供网民参考!
  • 推荐文章