gpt4 book ai didi

用正则表达式过滤html代码

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章用正则表达式过滤html代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

代码例子如下:

  1. <% 
  2. Option Explicit 
  3.  
  4. Function stripHTML(strHTML) 
  5. 'Strips the HTML tags from strHTML 
  6.  
  7.  Dim objRegExp, strOutput 
  8.  Set objRegExp = New Regexp 
  9.  
  10.  objRegExp.IgnoreCase = True 
  11.  objRegExp.Global = True 
  12.  objRegExp.Pattern = "<.+?>" 
  13.  
  14.  'Replace all HTML tag matches with the empty string 
  15.  strOutput = objRegExp.Replace(strHTML, ""
  16.  
  17.  'Replace all < and > with &lt; and &gt; 
  18.  strOutput = Replace(strOutput, "<""&lt;"
  19.  strOutput = Replace(strOutput, ">""&gt;"
  20.  
  21.  stripHTML = strOutput 'Return the value of strOutput 
  22.  
  23.  Set objRegExp = Nothing 
  24. End Function 
  25. %> 
  26.  
  27. <form method="post" id=form1 name=form1> 
  28.  <b>Enter an HTML String:</b><br> 
  29.  <textarea name="txtHTML" cols="50" rows="8" wrap="virtual"><%=Request("txtHTML")%></textarea> 
  30.  <p> 
  31.  <input type="submit" value="Strip HTML Tags!" id=submit1 name=submit1> 
  32. </form> 
  33.  
  34. <% if Len(Request("txtHTML")) > 0 then %> 
  35.  <p><hr><p> 
  36.  <b><u>View of string <i>with no</i> HTML stripping:</u></b><br> 
  37.  <xmp> 
  38.  <%=Request("txtHTML")%> 
  39.  </xmp><p> 
  40.  <b><u>View of string <i>with</i> HTML stripping:</u></b><br> 
  41.  <pre> 
  42.  <%=StripHTML(Request("txtHTML"))%> 
  43.  </pre> 
  44. <% End If %>  

最后此篇关于用正则表达式过滤html代码的文章就讲到这里了,如果你想了解更多关于用正则表达式过滤html代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com