c语言 ctype.h中的函数

isalnum()  字母,数字

isalpha()  字母

isblank()  标准空格

iscntrl()  控制符

isdigit()  数字

isgraph()  除空格外的可打印字符

islower()  小写字母

isprint()  可打印字符

ispunct()  标点符号

isspace()  空白字符

isupper()  大写字母

isxdigit()  十六进制字符

tolower()  如果参数是大写,转换为小写,否则返回原值

toupper()  如果参数是小写,转换为大写,否则返回原值

原文地址:https://www.cnblogs.com/sell/p/2833386.html