次の方法で共有


UCharacterIterator.Next Method

Definition

Returns the UTF16 code unit at index, and increments to the next code unit (post-increment semantics).

[Android.Runtime.Register("next", "()I", "GetNextHandler", ApiSince=24)]
public abstract int Next ();
[<Android.Runtime.Register("next", "()I", "GetNextHandler", ApiSince=24)>]
abstract member Next : unit -> int

Returns

the next UTF16 code unit, or DONE if the index is at the limit of the text.

Attributes

Remarks

Returns the UTF16 code unit at index, and increments to the next code unit (post-increment semantics). If index is out of range, DONE is returned, and the iterator is reset to the limit of the text.

Java documentation for android.icu.text.UCharacterIterator.next().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to