Character.IsLowerCase 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.
Overloads
IsLowerCase(Char) |
Determines if the specified character is a lowercase character. |
IsLowerCase(Int32) |
Determines if the specified character (Unicode code point) is a lowercase character. |
IsLowerCase(Char)
Determines if the specified character is a lowercase character.
[Android.Runtime.Register("isLowerCase", "(C)Z", "")]
public static bool IsLowerCase (char ch);
[<Android.Runtime.Register("isLowerCase", "(C)Z", "")>]
static member IsLowerCase : char -> bool
Parameters
- ch
- Char
the character to be tested.
Returns
true
if the character is lowercase;
false
otherwise.
- Attributes
Remarks
Determines if the specified character is a lowercase character.
A character is lowercase if its general category type, provided by Character.getType(ch)
, is LOWERCASE_LETTER
, or it has contributory property Other_Lowercase as defined by the Unicode Standard.
The following are examples of lowercase characters: <blockquote>
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'
</blockquote>
Many other Unicode characters are lowercase too.
<b>Note:</b> This method cannot handle supplementary characters. To support all Unicode characters, including supplementary characters, use the #isLowerCase(int)
method.
Java documentation for java.lang.Character.isLowerCase(char)
.
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
IsLowerCase(Int32)
Determines if the specified character (Unicode code point) is a lowercase character.
[Android.Runtime.Register("isLowerCase", "(I)Z", "")]
public static bool IsLowerCase (int codePoint);
[<Android.Runtime.Register("isLowerCase", "(I)Z", "")>]
static member IsLowerCase : int -> bool
Parameters
- codePoint
- Int32
the character (Unicode code point) to be tested.
Returns
true
if the character is lowercase;
false
otherwise.
- Attributes
Remarks
Determines if the specified character (Unicode code point) is a lowercase character.
A character is lowercase if its general category type, provided by Character#getType 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: <blockquote>
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'
</blockquote>
Many other Unicode characters are lowercase too.
Added in 1.5.
Java documentation for java.lang.Character.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.