一聚教程网:一个值得你收藏的教程网站

热门教程

一个功能更强大的函数,也是用正则表达式写的

时间:2022-06-30 10:53:14 编辑:袖梨 来源:一聚教程网

<%
Option Explicit
Function stripHTML(strtext)
dim arysplit,i,j, strOutput
arysplit=split(strtext,"<")
if len(arysplit(0))>0 then j=1 else j=0
for i=j to ubound(arysplit)
if instr(arysplit(i),">") then
arysplit(i)=mid(arysplit(i),instr(arysplit(i),">")+1)
else
arysplit(i)="<" & arysplit(i)
end if
next
strOutput = join(arysplit, "")
strOutput = mid(strOutput, 2-j)
strOutput = replace(strOutput,">",">")
strOutput = replace(strOutput,"<","<")
stripHTML = strOutput
End Function
%>

Enter an HTML String:





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



View of string with no HTML stripping:

<br /><%=Request("txtHTML")%><br />


View of string with HTML stripping:


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

<% End If %>

热门栏目