热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

用正则表达式过滤html代码

用正则表达式过滤html代码

代码例子如下:
<%
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 with
 strOutput = Replace(strOutput, "<", "<")
 strOutput = Replace(strOutput, ">", ">")

 stripHTML = strOutput 'Return the value of strOutput

 Set objRegExp = Nothing
End Function
%>


 Enter an HTML String:

 
 


 

<% if Len(Request("txtHTML")) > 0 then %>
 



 View of string with no HTML stripping:

 

<BR>&nbsp;<%=Request("txtHTML")%><BR>&nbsp;


 View of string with HTML stripping:

 


 <%=StripHTML(Request("txtHTML"))%>
 

<% End If %>


推荐阅读
author-avatar
手机用户2502937963
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有