1:isalnum() 函数说明:
检查参数c,是否为英文字母或阿拉伯数字
2:函数原型:
int isalnum(int c)
3:函数参数:
参数c,为检测字符
4:返回值:
若参数c为字母或数字,则返回TRUE,否则返回NULL(0)
5:示例:
#include <stdio.h>
#include <ctype.h>
int main () {
int i =0 ;
char str[]="sa789.@";
while (isalnum(str[i])){
printf ( "The characters is %c.\n",str[i] );
i++;
}
printf ("The first %d characters are alphanumeric.\n",i);
return 0;
}
6:输出结果: