BreakIterator.Last Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Set the iterator to the last boundary position.
[Android.Runtime.Register("last", "()I", "GetLastHandler", ApiSince=24)]
public abstract int Last ();
[<Android.Runtime.Register("last", "()I", "GetLastHandler", ApiSince=24)>]
abstract member Last : unit -> int
Returns
The character offset of the end of the stretch of text being broken.
- Attributes
Remarks
Set the iterator to the last boundary position. This is always the "past-the-end" index of the text this iterator iterates over. For example, if the iterator iterates over a whole string (call it "text"), this function will always return text.length().
Java documentation for android.icu.text.BreakIterator.last()
.
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.