asp去除html样式函数,网站首页取前100个字,去掉样式。

<% Function RemoveHTML(strHTML) Dim objRegExp, Match, Matches Set objRegExp = New Regexp objRegExp.IgnoreCase = True objRegExp.Global = True '取闭合的<> objRegExp.Pattern = "<.+?>" '进行匹配 strHTML=replace(strHTML,"&nbsp;","") Set Matches = objRegExp.Execute(strHTML) ' 遍历匹配集合,并替换掉匹配的项目 For Each Match in Matches strHtml=Replace(strHTML,Match.Value,"") Next RemoveHTML=strHTML Set objRegExp = Nothing End Function

%>

相关文章:

  • 2022-01-11
  • 2022-02-07
  • 2022-12-23
  • 2021-08-20
  • 2022-12-23
  • 2021-09-26
  • 2021-08-08
  • 2022-12-23
猜你喜欢
  • 2021-07-09
  • 2021-06-10
  • 2022-12-23
  • 2021-06-02
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案