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

isdigit函数


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

描述:

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

十进制数字字符包括:

0 1 2 3 4 5 6 7 8 9

该函数行为不会受当前语言环境影响。


参数:
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 
/*函数isdigit范例*/

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

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

    puts("Decimal-digit characters in the sentence:");
    while(str[i])
    {
        if(isdigit(str[i]))
        {
            putchar(str[i]);
            putchar('\n');
        }
        ++i;
    }

    return 0;
}

输出:

Decimal-digit characters in the sentence:

2

0

4

9


相关内容:
isxdigit 检查字符是否为十六进制数字字符的函数。
isalnum 检查字符是否为字母或者十进制数字字符的函数。