程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP技巧 >> Asp給字符串中的網址加上超連接

Asp給字符串中的網址加上超連接

編輯:ASP技巧
<%
Function regExReplace(sSource,patrn, replStr) 
Dim regEx, str1 
str1 = sSource 
Set regEx = New RegExp 
regEx.Pattern = patrn 
regEx.IgnoreCase = True 
regEx.Global = True 
regExReplace = regEx.Replace(str1, replStr) 
End Function


Function RegExpTest(strng,s)
strng1=strng
Dim regEx, Match, Matches   ' 建立變量。
Set regEx = New RegExp   ' 建立正則表達式。
regEx.Pattern = s   ' 設置模式。
regEx.IgnoreCase = True   ' 設置是否區分大小寫。
regEx.Global = True   ' 設置全局替換。
Set Matches = regEx.Execute(strng)   ' 執行搜索。
For Each Match in Matches   ' 遍歷 Matches 集合。
strng1=regExReplace(strng1,Match.value,"<a href="""&#38;Match.value&#38;""" target=""_blank"">"&#38;Match.Value&#38;"</a>")
Next
RegExpTest = strng1
end Function

str="http://www.yahoo.com.cn雅虎http://www.sina.com.cn新浪http://hao123.com好123"
s="((http:[/][/]|www.)([a-z]|[A-Z]|[0-9]|[/.]|[~])*)"
response.write RegExpTest(str,s)
  %>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved