介绍C语言字符函数。其标准库为<ctype.h>
,程序中引入需要:
#include <ctype.h>
函数 | 说明 |
---|---|
isalnum() | 判断字符是否为字母或数字 |
isalpha() | 判断字符是否为英文字母 |
iscntrl() | 判断字符是否为控制字符 |
isdigit() | 判断字符是否为数字 |
islower() | 判断字符是否为小写 |
isascii() | 判断字符是否为ascii码 |
isgraph() | 判断字符是否可打印 |
ispunct() | 判断字符是否为标点符号 |
isspace() | 判断字符是否为空白符号 |
isupper() | 判断字符是否为英文大写 |
isxdigit() | 判断字符是否为16进制 |
tolower() | 字符转小写 |
toupper() | 字符转大写 |
isprint() | 判断字符是否可打印 |
toascii() | 字符转ASCII码 |