isLowerCase

fun isLowerCase(codePoint: Int): Boolean

Determines if the specified character (Unicode code point) is a lowercase character.

A character is lowercase if its general category type, provided by getType(codePoint), is LOWERCASE_LETTER, or it has contributory property Other_Lowercase as defined by the Unicode Standard.

The following are examples of lowercase characters:

a b c d e f g h i j k l m n o p q r s t u v w x y z
'\u00DF' '\u00E0' '\u00E1' '\u00E2' '\u00E3' '\u00E4' '\u00E5' '\u00E6'
'\u00E7' '\u00E8' '\u00E9' '\u00EA' '\u00EB' '\u00EC' '\u00ED' '\u00EE'
'\u00EF' '\u00F0' '\u00F1' '\u00F2' '\u00F3' '\u00F4' '\u00F5' '\u00F6'
'\u00F8' '\u00F9' '\u00FA' '\u00FB' '\u00FC' '\u00FD' '\u00FE' '\u00FF'
*

Many other Unicode characters are lowercase too.

Return

true if the character is lowercase; false otherwise.

Since

1.5

Parameters

codePoint

the character (Unicode code point) to be tested.

See also