UTF8Encoding.GetCharCount メソッド
バイト配列の一連の要素をデコードした結果、取得される文字数を計算します。
オーバーロードの一覧
バイト配列の指定した範囲の要素をデコードした結果、取得される文字数を計算します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Overrides Public Function GetCharCount(Byte(), Integer, Integer) As Integer
[C++] public: int GetCharCount(unsigned char __gc[], int, int);
[JScript] public override function GetCharCount(Byte[], int, int) : int;
Encoding から継承されます。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Overridable Function GetCharCount(Byte()) As Integer
[C++] public: virtual int GetCharCount(unsigned char __gc[]);
使用例
[Visual Basic, C#, C++] UTF8Encoding を使用してバイト配列 bytes
からある範囲の要素をデコードし、その結果の文字数を GetCharCount メソッドを使用して返す方法を次の例に示します。
[Visual Basic, C#, C++] メモ ここでは、GetCharCount のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
Imports System
Imports System.Text
Class UTF8EncodingExample
Public Shared Sub Main()
Dim bytes() As Byte = { _
85, 84, 70, 56, 32, 69, 110, _
99, 111, 100, 105, 110, 103, 32, _
69, 120, 97, 109, 112, 108, 101 _
}
Dim utf8 As New UTF8Encoding()
Dim charCount As Integer = utf8.GetCharCount(bytes, 2, 8)
Console.WriteLine("{0} characters needed to decode bytes.", charCount)
End Sub 'Main
End Class 'UTF8EncodingExample
[C#]
using System;
using System.Text;
class UTF8EncodingExample {
public static void Main() {
Byte[] bytes = new Byte[] {
85, 84, 70, 56, 32, 69, 110,
99, 111, 100, 105, 110, 103, 32,
69, 120, 97, 109, 112, 108, 101
};
UTF8Encoding utf8 = new UTF8Encoding();
int charCount = utf8.GetCharCount(bytes, 2, 8);
Console.WriteLine(
"{0} characters needed to decode bytes.", charCount
);
}
}
[C++]
#using <mscorlib.dll>
using namespace System;
using namespace System::Text;
int main()
{
Byte bytes[] =
{
85, 84, 70, 56, 32, 69, 110,
99, 111, 100, 105, 110, 103, 32,
69, 120, 97, 109, 112, 108, 101
};
UTF8Encoding* utf8 = new UTF8Encoding();
int charCount = utf8 -> GetCharCount(bytes, 2, 8);
Console::WriteLine(S"{0} characters needed to decode bytes.", __box(charCount));
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。