當前位置: 首頁>>代碼示例>>VB.NET>>正文


VB.NET ASCIIEncoding類代碼示例

本文整理匯總了VB.NET中System.Text.ASCIIEncoding的典型用法代碼示例。如果您正苦於以下問題:VB.NET ASCIIEncoding類的具體用法?VB.NET ASCIIEncoding怎麽用?VB.NET ASCIIEncoding使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了ASCIIEncoding類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。

示例1: ASCIIEncodingExample

' 導入命名空間
Imports System.Text

Class ASCIIEncodingExample
    Public Shared Sub Main()
        ' The encoding.
        Dim ascii As New ASCIIEncoding()

        ' A Unicode string with two characters outside the ASCII code range.
        Dim unicodeString As String = _
            "This Unicode string contains two characters " & _
            "with codes outside the ASCII code range, " & _
            "Pi (" & ChrW(928) & ") and Sigma (" & ChrW(931) & ")."
        Console.WriteLine("Original string:")
        Console.WriteLine(unicodeString)

        ' Save positions of the special characters for later reference.
        Dim indexOfPi As Integer = unicodeString.IndexOf(ChrW(928))
        Dim indexOfSigma As Integer = unicodeString.IndexOf(ChrW(931))

        ' Encode string.
        Dim encodedBytes As Byte() = ascii.GetBytes(unicodeString)
        Console.WriteLine()
        Console.WriteLine("Encoded bytes:")
        Dim b As Byte
        For Each b In encodedBytes
            Console.Write("[{0}]", b)
        Next b
        Console.WriteLine()

        ' Notice that the special characters have been replaced with
        ' the value 63, which is the ASCII character code for '?'.
        Console.WriteLine()
        Console.WriteLine( _
            "Value at position of Pi character: {0}", _
            encodedBytes(indexOfPi) _
        )
        Console.WriteLine( _
            "Value at position of Sigma character: {0}", _
            encodedBytes(indexOfSigma) _
        )

        ' Decode bytes back to string.
        ' Notice missing Pi and Sigma characters.
        Dim decodedString As String = ascii.GetString(encodedBytes)
        Console.WriteLine()
        Console.WriteLine("Decoded bytes:")
        Console.WriteLine(decodedString)
    End Sub
End Class
開發者ID:VB.NET開發者,項目名稱:System.Text,代碼行數:50,代碼來源:ASCIIEncoding

輸出:

Original string:
This Unicode string contains two characters with codes outside the ASCII code ra
nge, Pi (Π) and Sigma (Σ).

Encoded bytes:
[84][104][105][115][32][85][110][105][99][111][100][101][32][115][116][114][105]
[110][103][32][99][111][110][116][97][105][110][115][32][116][119][111][32][99][
104][97][114][97][99][116][101][114][115][32][119][105][116][104][32][99][111][1
00][101][115][32][111][117][116][115][105][100][101][32][116][104][101][32][65][
83][67][73][73][32][99][111][100][101][32][114][97][110][103][101][44][32][80][1
05][32][40][63][41][32][97][110][100][32][83][105][103][109][97][32][40][63][41]
[46]

Value at position of Pi character: 63
Value at position of Sigma character: 63

Decoded bytes:
This Unicode string contains two characters with codes outside the ASCII code ra
nge, Pi (?) and Sigma (?).


注:本文中的System.Text.ASCIIEncoding類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。