C語言isalnum()函數:判斷一個字元是否是字母或者數位

2020-07-16 10:04:50
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.