用正则表达式过滤html代码

zhuminggexing

zhuminggexing

2016-02-19 13:51

下面是个简单易学的用正则表达式过滤html代码教程,图老师小编详细图解介绍包你轻松学会,喜欢的朋友赶紧get起来吧!

代码例子如下:
%
Option Explicit

Function stripHTML(strHTML)
'Strips the HTML tags from strHTML

(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/webkaifa/)

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
bEnter an HTML String:/bbr
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

(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/webkaifa/)

% if Len(Request("txtHTML")) 0 then %
phrp
buView of string iwith no/i HTML stripping:/u/bbr
xmp
%=Request("txtHTML")%
/xmpp
buView of string iwith/i HTML stripping:/u/bbr
pre
%=StripHTML(Request("txtHTML"))%
/pre
% End If %

展开更多 50%)
分享

猜你喜欢

用正则表达式过滤html代码

Web开发
用正则表达式过滤html代码

正则表达式过滤html标签对

Web开发
正则表达式过滤html标签对

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

正则表达式过滤html的标签对

Web开发
正则表达式过滤html的标签对

利用正则表达式去掉html代码

Web开发
利用正则表达式去掉html代码

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

正则表达式轻松消除HTML代码

Web开发
正则表达式轻松消除HTML代码

c#中过滤html的正则表达式

Web开发
c#中过滤html的正则表达式

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

装扮空间时提示“非法操作”怎么办?

装扮空间时提示“非法操作”怎么办?

Js&Vbs正则表达式替换重复的字符

Js&Vbs正则表达式替换重复的字符
下拉加载更多内容 ↓