UCharacter.IsTitleCase(Int32) Method

Definition

Determines if the specified code point is a titlecase character.

[Android.Runtime.Register("isTitleCase", "(I)Z", "", ApiSince=24)]
public static bool IsTitleCase (int ch);
[<Android.Runtime.Register("isTitleCase", "(I)Z", "", ApiSince=24)>]
static member IsTitleCase : int -> bool

Parameters

ch
Int32

code point to determine if it is in title case

Returns

true if the specified code point is a titlecase character

Attributes

Remarks

Determines if the specified code point is a titlecase character. UnicodeData only contains case mappings for code points where they are one-to-one mappings; it also omits information about context-sensitive case mappings.<br> For more information about Unicode case mapping please refer to the Technical report #21.<br> Up-to-date Unicode implementation of java.lang.Character.isTitleCase().

Java documentation for android.icu.lang.UCharacter.isTitleCase(int).

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