HttpUtility.HtmlDecode 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 HTTP 傳輸的 HTTP 編碼字串轉換成已解碼的字串。
若要編碼或解碼 Web 應用程式之外的值,請使用 WebUtility 類別。
多載
HtmlDecode(String) |
將 HTTP 傳輸的 HTTP 編碼字串轉換成已解碼的字串。 |
HtmlDecode(String, TextWriter) |
將已 HTML 編碼的字串轉換成已解碼的字串,並將解碼的字串傳送至 TextWriter 輸出資料流。 |
HtmlDecode(String)
將 HTTP 傳輸的 HTTP 編碼字串轉換成已解碼的字串。
public:
static System::String ^ HtmlDecode(System::String ^ s);
public static string? HtmlDecode (string? s);
public static string HtmlDecode (string s);
static member HtmlDecode : string -> string
Public Shared Function HtmlDecode (s As String) As String
參數
- s
- String
要解碼的字串。
傳回
已解碼的字串。
範例
下列程式碼範例示範 HtmlEncode 類別的 HttpUtility 和 HtmlDecode 方法。 輸入字串會使用 HtmlEncode 方法來編碼。 然後,使用 HtmlDecode 方法來解碼取得的編碼字串。
using System;
using System.Web;
using System.IO;
class MyNewClass
{
public static void Main()
{
Console.WriteLine("Enter a string having '&', '<', '>' or '\"' in it: ");
string myString = Console.ReadLine();
// Encode the string.
string myEncodedString = HttpUtility.HtmlEncode(myString);
Console.WriteLine($"HTML Encoded string is: {myEncodedString}");
StringWriter myWriter = new StringWriter();
// Decode the encoded string.
HttpUtility.HtmlDecode(myEncodedString, myWriter);
string myDecodedString = myWriter.ToString();
Console.Write($"Decoded string of the above encoded string is: {myDecodedString}");
}
}
Imports System.Web
Imports System.IO
Class MyNewClass
Public Shared Sub Main()
Dim myString As String
Console.WriteLine("Enter a string having '&' or '""' in it: ")
myString = Console.ReadLine()
Dim myEncodedString As String
' Encode the string.
myEncodedString = HttpUtility.HtmlEncode(myString)
Console.WriteLine("HTML Encoded string is " + myEncodedString)
Dim myWriter As New StringWriter()
' Decode the encoded string.
HttpUtility.HtmlDecode(myEncodedString, myWriter)
Console.Write("Decoded string of the above encoded string is " + myWriter.ToString())
End Sub
End Class
備註
如果在 HTTP 資料流程中傳遞空白和標點符號之類的字元,在接收端可能會誤譯這些字元。 HTML 編碼會將 HTML 中不允許的字元轉換成字元實體對等專案;HTML 解碼會反轉編碼。 例如,當內嵌在文字區塊中時,字元 < and > 會編碼為 <
和 >
進行 HTTP 傳輸。
若要編碼或解碼 Web 應用程式之外的值,請使用 WebUtility 類別。
另請參閱
適用於
HtmlDecode(String, TextWriter)
將已 HTML 編碼的字串轉換成已解碼的字串,並將解碼的字串傳送至 TextWriter 輸出資料流。
public:
static void HtmlDecode(System::String ^ s, System::IO::TextWriter ^ output);
public static void HtmlDecode (string? s, System.IO.TextWriter output);
public static void HtmlDecode (string s, System.IO.TextWriter output);
static member HtmlDecode : string * System.IO.TextWriter -> unit
Public Shared Sub HtmlDecode (s As String, output As TextWriter)
參數
- s
- String
要解碼的字串。
- output
- TextWriter
TextWriter 的輸出資料流。
備註
如果在 HTTP 資料流程中傳遞空白和標點符號之類的字元,在接收端可能會誤譯這些字元。 HTML 編碼會將 HTML 中不允許的字元轉換成字元實體對等專案;HTML 解碼會反轉編碼。 例如,當內嵌在文字區塊中時,字元 < and > 會編碼為 <
和 >
進行 HTTP 傳輸。
若要編碼或解碼 Web 應用程式之外的值,請使用 WebUtility 類別。