isalnum (测试字符是否为英文或数字) 相关函数 isalpha, isdigit, islower, isupper 头文件 #include 定义函数 int isalnum (int c); 函数说明 检查参数 c 是否为英文字母或阿拉伯数字, 在标准 c 中相当于使用“isalpha(c) || isdigit(c)”做测试。 返回值 若参数 c 为字母或数字, 则返回 TRUE, 否则返回 NULL(0)。 附加说明 此为宏定义, 非真正函数。 范例 /* 找出 str 字符串中为英文字母或数字的字符 */ #include main() { char str[] = “123c@#FDsP[e?”; int i; for (i = 0; str[i] != 0; i++) if(isalnum(str[i])) printf(“%c is an alphanumeric character\n”, str[i]); } 执行 1 is an apphabetic character 2 is an apphabetic character 3 is an apphabetic character c is an apphabetic character F is an apphabetic character D is an apphabetic character s is an apphabetic character P is an apphabetic character e is an apphabetic character
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
全部0条评论
快来发表一下你的评论吧 !