C ctype islower() 函数
示例
检查字符是否为小写字母
char c = 'b';
if (islower(c)) {
printf("%c is a lowercase letter", c);
} else {
printf("%c is not a lowercase letter", c);
}
自己试一试 »
定义和用法
如果字符是小写字母,则 islower()
函数返回一个非零值(等价于布尔值 true)。
islower()
函数在 <ctype.h>
头文件中定义。
语法
int islower(int c);
参数值
参数 | 描述 |
---|---|
c | 必需。字符的 ASCII 值或实际字符 |
技术细节
返回值 | 一个 int 值,如果字符是小写字母,则为非零值(等价于布尔值 true)。否则返回 0(等价于布尔值 false)。 |
---|