Partager via


UCharacter.IsLowerCase(Int32) Method

Definition

Determines if the specified code point is a lowercase character.

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

Parameters

ch
Int32

code point to determine if it is in lowercase

Returns

true if code point is a lowercase character

Attributes

Remarks

Determines if the specified code point is a lowercase 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.isLowerCase()

Java documentation for android.icu.lang.UCharacter.isLowerCase(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