StringInfo.GetNextTextElementLength メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
GetNextTextElementLength(ReadOnlySpan<Char>) |
入力スパンで発生する最初のテキスト要素 (拡張 grapheme クラスター) の長さを返します。 |
GetNextTextElementLength(String) |
入力文字列で発生する最初のテキスト要素 (拡張 grapheme クラスター) の長さを返します。 |
GetNextTextElementLength(String, Int32) |
指定したインデックスから始まる入力文字列で発生する最初のテキスト要素 (拡張 grapheme クラスター) の長さを返します。 |
GetNextTextElementLength(ReadOnlySpan<Char>)
- ソース:
- StringInfo.cs
- ソース:
- StringInfo.cs
- ソース:
- StringInfo.cs
入力スパンで発生する最初のテキスト要素 (拡張 grapheme クラスター) の長さを返します。
public:
static int GetNextTextElementLength(ReadOnlySpan<char> str);
public static int GetNextTextElementLength (ReadOnlySpan<char> str);
static member GetNextTextElementLength : ReadOnlySpan<char> -> int
Public Shared Function GetNextTextElementLength (str As ReadOnlySpan(Of Char)) As Integer
パラメーター
- str
- ReadOnlySpan<Char>
分析する入力スパン。
戻り値
内 str
の最初のテキスト要素に対応する部分文字列の長さ (文字単位)。 が空の場合 str
は 0。
注釈
grapheme クラスターは、1 つの単位として扱う必要がある 1 つ以上の Unicode コード ポイントのシーケンスです。
適用対象
GetNextTextElementLength(String)
- ソース:
- StringInfo.cs
- ソース:
- StringInfo.cs
- ソース:
- StringInfo.cs
入力文字列で発生する最初のテキスト要素 (拡張 grapheme クラスター) の長さを返します。
public:
static int GetNextTextElementLength(System::String ^ str);
public static int GetNextTextElementLength (string str);
static member GetNextTextElementLength : string -> int
Public Shared Function GetNextTextElementLength (str As String) As Integer
パラメーター
- str
- String
分析する入力文字列。
戻り値
内 str
の最初のテキスト要素に対応する部分文字列の長さ (文字単位)。 が空の場合 str
は 0。
例外
str
は null
です。
注釈
grapheme クラスターは、1 つの単位として扱う必要がある 1 つ以上の Unicode コード ポイントのシーケンスです。
適用対象
GetNextTextElementLength(String, Int32)
- ソース:
- StringInfo.cs
- ソース:
- StringInfo.cs
- ソース:
- StringInfo.cs
指定したインデックスから始まる入力文字列で発生する最初のテキスト要素 (拡張 grapheme クラスター) の長さを返します。
public:
static int GetNextTextElementLength(System::String ^ str, int index);
public static int GetNextTextElementLength (string str, int index);
static member GetNextTextElementLength : string * int -> int
Public Shared Function GetNextTextElementLength (str As String, index As Integer) As Integer
パラメーター
- str
- String
分析する入力文字列。
- index
- Int32
分析を開始する 位置の str
char オフセット。
戻り値
インデックスindex
から始まる内str
の最初のテキスト要素に対応する部分文字列の長さ (chars 単位)。 の末尾str
に対応する場合index
は 0。
例外
str
は null
です。
index
が負であるか、 の str
末尾を超えています。
注釈
grapheme クラスターは、1 つの単位として扱う必要がある 1 つ以上の Unicode コード ポイントのシーケンスです。
適用対象
.NET