ASP removal of all hyperlinks in two ways to replace and regular _ application tips

Source: Internet
Author: User
<%
'******************************
' Function: removehref_a (HTMLSTR)
' Parameters: Htmlstr, string to remove link
' Author: Arisisi
' Date: 2007/7/12
' Description: Remove all hyperlinks in the string
' Example: <%=removehref_a ("<a href=/abc/h.html> test </a>")%>
'******************************
Function removehref_a (HTMLSTR)
Dim N,STR1,STR2,STR3,STR4
Htmlstr = Lcase (HTMLSTR)
For N=1 to Ubound (Split (Htmlstr, "<a"))
STR1 = Instr (Htmlstr, "<a")
str2 = Instr (Str1,htmlstr, ">")
Htmlstr = Left (htmlstr,str1-1) &right (Htmlstr,len (HTMLSTR)-len (left (HTMLSTR,STR2))
HTMLSTR = replace (htmlstr, "</a>", "")
removehref_a = Htmlstr
Next
End Function
%>
Remove all hyperlinks in a string by regular
<%
'******************************
' Function: Regremovehref (HTMLSTR)
' Parameters: Htmlstr, string to remove link
' Author: Arisisi
' Date: 2007/7/12
' Description: All hyperlinks in the string are removed by regular
' Example: <%=regremovehref ("<a href=/abc/h.html> test </a>")%>
'******************************
Function Regremovehref (HTMLSTR)
Set RA = New RegExp
Ra. IgnoreCase = True
Ra. Global = True
Ra. Pattern = "<a[^>]+> (. +?) <\/a> "
Regremovehref = Ra.replace (Htmlstr, "$")
End Function
%>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.