C语言 isalnum() 函数用于判断一个字符是否是字母(包括大写字母和小写字母)或者数字(0~9)。
头文件:ctype.h
语法/原型:
参数 c 表示要检测字符或者 ASCII 码。
返回值:返回非 0(真)表示 c 是字母或者数字,返回 0(假)表示 c 既不是数字也不是字母。
【实例】使用C语言 isalnum() 函数统计一个字符串中有多少个字母或数字。
#include <stdio.h>
#include <ctype.h>
int main()
{
int i = 0, n = 0;
char str[] = "*http://www.cdsy.xyz is 2 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.