C语言 isalnum() 函数用于判断一个字符是否是字母(包括大写字母和小写字母)或者数字(0~9)。
头文件:ctype.h
语法/原型:
int isalnum(int c);
参数 c 表示要检测字符或者 ASCII 码。
返回值:返回非 0(真)表示 c 是字母或者数字,返回 0(假)表示 c 既不是数字也不是字母。
【实例】使用C语言 isalnum() 函数统计一个字符串中有多少个字母或数字。
#include <stdio.h> #include <ctype.h> int main() { int i = 0, n = 0; char str[] = "*http://c.biancheng.net is 7 years old"; while (str[i]) { if (isalnum(str[i])) n++; i++; } printf("There are %d characters in str is alphanumeric./n", n); return 0; }
运行结果:
There are 28 characters in str is alphanumeric.
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/22489.html