IsLower()
Contents
[
Hide
]Char::IsLower(const char_t *, int) method
Determines whether the character at the specified index in the specified character buffer is classified as a lower case letter.
static bool System::Char::IsLower(const char_t *str, int idx)
Arguments
Parameter | Type | Description |
---|---|---|
str | const char_t * | Pointer to the beginning of the character buffer |
idx | int | A zero-based index in the specified buffer of the character to test |
Return Value
True if the character at the specified index is a lower case letter, otherwise - false
Char::IsLower(char_t) method
Determines whether the specified character is classified as a lower case letter.
static bool System::Char::IsLower(char_t c)
Arguments
Parameter | Type | Description |
---|---|---|
c | char_t | The character to test |
Return Value
True if the specified character is a lower case letter, otherwise - false
Char::IsLower(const String&, int) method
Determines whether the character at the specified index in the specified string is classified as a lower case letter.
static bool System::Char::IsLower(const String &str, int idx)
Arguments
Parameter | Type | Description |
---|---|---|
str | const String& | A string |
idx | int | A zero-based index in the specified string to test |
Return Value
True if the character at the specified index is a lower case letter, otherwise - false
See Also
- Class Char
- Class String
- Namespace System
- Library Aspose.Slides