System::Char::IsLower 方法

Char::IsLower(char_t) method

确定指定字符是否被分类为小写字母。

static bool System::Char::IsLower(char_t c)
参数类型描述
cchar_t要测试的字符

ReturnValue

如果指定字符是小写字母,则为 true;否则为 false

另见

Char::IsLower(const char_t *, int) method

确定指定字符缓冲区中指定索引处的字符是否被分类为小写字母。

static bool System::Char::IsLower(const char_t *str, int idx)
参数类型描述
strconst char_t *指向字符缓冲区起始位置的指针
idxint指定缓冲区中要测试的字符的零基索引

ReturnValue

如果指定索引处的字符是小写字母,则为 true;否则为 false

另见

Char::IsLower(const String&, int) method

确定指定字符串中指定索引处的字符是否被分类为小写字母。

static bool System::Char::IsLower(const String &str, int idx)
参数类型描述
strconst String&字符串
idxint指定字符串中要测试的字符的零基索引

ReturnValue

如果指定索引处的字符是小写字母,则为 true;否则为 false

另见