SPUtility.AutoHyperlinking method
轉換 Url 及轉換為 HTML 編碼字串中的超連結的純文字字串中的電子郵件地址。
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'宣告
Public Shared Function AutoHyperlinking ( _
value As String _
) As String
'用途
Dim value As String
Dim returnValue As String
returnValue = SPUtility.AutoHyperlinking(value)
public static string AutoHyperlinking(
string value
)
參數
value
Type: System.String包含純文字字串。
傳回值
Type: System.String
HTML 字串,其中包含內嵌的 Url 及轉換成超連結的電子郵件地址的原始字串編碼的版本。
備註
此方法會搜尋任何 Url 或電子郵件地址中指定的字串,並將其轉換成 HTML A標籤。
Examples
下面範例會將 URL 及電子郵件地址轉換成兩個超連結的主控台應用程式的一部分。
string plainText = "For more information on "Sample Product", see https://www.microsoft.com or e-mail someone@microsoft.com.";
string htmlText = SPUtility.AutoHyperlinking(plainText);
Console.WriteLine(htmlText);
此範例會產生下列輸出:
For more information on "Sample Product", see <a href="https://www.microsoft.com">https://www.microsoft.com</a> or e-mail <a href="mailto:someone@microsoft.com">someone@microsoft.com</a>.