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

ASP為字符串中的網址自動加上鏈接

編輯:關於ASP編程
<%
'字段內網址加上聯接。
Function ToLink(Str)
    Dim RE '正則表達式對象     Dim strContent
    If IsNull(Str) Then Str = ""
    Set RE = New RegExp '創建正 則表達式對象
    With RE
        .Global = True '搜索應用於整個字符串
        .IgnoreCase = True '搜索不區分大小寫的
        strContent = Str
        '***************************************************************
        '郵件地址鏈接自動設置
        '***************************************************************
        .Pattern = "([\w]*)@([\w\.]*)"
        strContent = .Replace(strContent, "<A Href='mailto:$1@$2'>$1@$2</A> ")
        '***************************************************************
        '鏈接自動設置
        '***************************************************************
        '======根據要求再添加協議名稱=======
        Dim D(3), I
        D(0) = "http"
        D(1) = "ftp"
        D(2) = "news"
        D(3) = "mms"
        '===================================
        For I = 0 To UBound(D)
            .Pattern = D(I) + ":\/\/([\w\.]*)"
            strContent = .Replace(strContent, "<A Href='" + D(I) + "://$1' target=_blank>" + D(I) + "://$1</A> ")
        Next
        '***************************************************************
    End With
    Set RE = Nothing
    ToLink = strContent
End Function

%>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved