SPHttpUtility.HtmlDecode method (String, Boolean)
解碼已編碼的HtmlEncode(String)方法的字串。
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'宣告
Public Shared Function HtmlDecode ( _
valueToDecode As String, _
decodeNbsp As Boolean _
) As String
'用途
Dim valueToDecode As String
Dim decodeNbsp As Boolean
Dim returnValue As String
returnValue = SPHttpUtility.HtmlDecode(valueToDecode, _
decodeNbsp)
public static string HtmlDecode(
string valueToDecode,
bool decodeNbsp
)
參數
valueToDecode
Type: System.String要解碼的 HTML 字串。
decodeNbsp
Type: System.Booleantrue指定的字元實體與網頁上 nbsp;與 & #160;應該解碼為空白。
傳回值
Type: System.String
傳回已解碼的字串。如果valueToDecode是空字串,這個方法會傳回空的物件。如果valueToDecode是 null,則這個方法會傳回 null。
備註
要編碼的 HTML 字串,使用HtmlEncode(String)方法。要解碼的 HTML 字串由HtmlEncode(String)編碼不解碼與網頁上 nbsp;與 & #160;為泛空白字元的字元實體,請使用HtmlDecode(String)方法。