您现在的位置是:网站首页> 编程资料编程资料
asp去除所有的超级链接的两种方法 替换与正则_应用技巧_
2023-05-25
229人已围观
简介 asp去除所有的超级链接的两种方法 替换与正则_应用技巧_
<%
'******************************
'函数:RemoveHref_A(HTMLstr)
'参数:HTMLstr,待去除链接的字符串
'作者:阿里西西
'日期:2007/7/12
'描述:去除字符串中所有的超级链接
'示例:<%=RemoveHref_A("测试")%>
'******************************
Function RemoveHref_A(HTMLstr)
Dim n,str1,str2,str3,str4
HTMLstr = Lcase(HTMLstr)
For n=1 to Ubound(Split(HTMLstr,"str1 = Instr(HTMLstr,"str2 = Instr(str1,HTMLstr,">")
HTMLstr = left(HTMLstr,str1-1)&right(HTMLstr,len(HTMLstr)-len(left(HTMLstr,str2)))
HTMLstr = replace (HTMLstr,"","")
RemoveHref_A = HTMLstr
Next
End Function
%>
通过正则去除字符串中所有的超级链接
<%
'******************************
'函数:RegRemoveHref(HTMLstr)
'参数:HTMLstr,待去除链接的字符串
'作者:阿里西西
'日期:2007/7/12
'描述:通过正则去除字符串中所有的超级链接
'示例:<%=RegRemoveHref("测试")%>
'******************************
Function RegRemoveHref(HTMLstr)
Set ra = New RegExp
ra.IgnoreCase = True
ra.Global = True
ra.Pattern = "]+>(.+?)<\/a>"
RegRemoveHref = ra.replace(HTMLstr,"$1")
END Function
%>
'******************************
'函数:RemoveHref_A(HTMLstr)
'参数:HTMLstr,待去除链接的字符串
'作者:阿里西西
'日期:2007/7/12
'描述:去除字符串中所有的超级链接
'示例:<%=RemoveHref_A("测试")%>
'******************************
Function RemoveHref_A(HTMLstr)
Dim n,str1,str2,str3,str4
HTMLstr = Lcase(HTMLstr)
For n=1 to Ubound(Split(HTMLstr,"str1 = Instr(HTMLstr,"str2 = Instr(str1,HTMLstr,">")
HTMLstr = left(HTMLstr,str1-1)&right(HTMLstr,len(HTMLstr)-len(left(HTMLstr,str2)))
HTMLstr = replace (HTMLstr,"","")
RemoveHref_A = HTMLstr
Next
End Function
%>
通过正则去除字符串中所有的超级链接
<%
'******************************
'函数:RegRemoveHref(HTMLstr)
'参数:HTMLstr,待去除链接的字符串
'作者:阿里西西
'日期:2007/7/12
'描述:通过正则去除字符串中所有的超级链接
'示例:<%=RegRemoveHref("测试")%>
'******************************
Function RegRemoveHref(HTMLstr)
Set ra = New RegExp
ra.IgnoreCase = True
ra.Global = True
ra.Pattern = "]+>(.+?)<\/a>"
RegRemoveHref = ra.replace(HTMLstr,"$1")
END Function
%>
相关内容
- asp快速开发方法之数据操作实例代码第1/3页_ASP基础_
- asp Chr 函数 数字转字母的方法_ASP基础_
- ReSaveRemoteFile函数之asp实现查找文件保存替换的代码_应用技巧_
- ReplaceSaveRemoteFile 替换、保存远程图片 的代码_应用技巧_
- DefiniteUrl asp将相对地址转换为绝对地址的代码_应用技巧_
- asp之GetArray提取链接地址,以$Array$分隔的代码_应用技巧_
- GetBody asp实现截取字符串的代码_应用技巧_
- asp下实现UrlEncoding转换编码的代码_应用技巧_
- PostHttpPage用asp是实现模拟登录效果的代码_应用技巧_
- BytesToBstr获取的源码转换为中文的代码_应用技巧_
