当前位置: C语言 -- 标准库 -- <ctype.h> -- isalnum

isalnum函数


概要:
#include <ctype.h>
int isalnum(int c);

描述:

该函数用于检查字符是否为字母或者十进制数字字符。

该函数行为会受当前语言环境影响。默认环境中(即“C”语言环境),字母和十进制数字为下述成员之一:

a b c d e f g h i j k l m n o p q r s t u v w x y z

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

0 1 2 3 4 5 6 7 8 9

非默认环境中,字母和十进制数字为特定语言环境字符集成员,该成员的isalpha函数或者isdigit函数返回值为true


参数:
int c

参数c为一个int类型整数,其值可用unsigned char类型表示或者等于宏EOF。如果参数c是其它值,函数行为是未定义的。


返回值:

如果参数c是字母或者十进制数字,函数返回非0值(即true);反之,如果参数c既不是字母,也不是十进制数字,函数返回0(即false)。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
/*函数isalnum范例*/

#include <ctype.h>
#include <stdio.h>

int main(void)
{
    int i = 0;
    int count = 0;
    const char str[] = "The year 2049 marks the centenary of the People's Republic of China.";

    while(str[i])
    {
        if(isalnum(str[i]))
            ++count;

        ++i;
    }

    printf("The number of alphanumeric characters: %d\n", count);

    return 0;
}

输出:

The number of alphanumeric characters: 55


相关内容:
isalpha 检查字符是否为字母的函数。
isdigit 检查字符是否为十进制数字字符的函数。