最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
一个功能更强大的函数,也是用正则表达式写的
时间: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
%>
<% if Len(Request("txtHTML")) > 0 then %>
<%=Request("txtHTML")%>
<% End If %>
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
%>
<% if Len(Request("txtHTML")) > 0 then %>
View of string with no HTML stripping:
<%=Request("txtHTML")%>
View of string with HTML stripping:
<%=StripHTML(Request("txtHTML"))%>
<% End If %>
相关文章
- 以闪亮之名海谕遥音套装细节展示攻略 05-09
- 碧蓝航线文琴佐焦贝蒂技能属性一览攻略 05-09
- 以闪亮之名新套海报捏脸数据id攻略 05-09
- DNF手游小队突袭第三期怪物有哪些打法 05-09
- DNF手游幻影马戏团第二幕新增装备汇总攻略 05-09
- 火影忍者手游黑绝技能动图展示攻略 05-09