當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 isalpha()用法及代碼示例


該函數用於檢查字符是否為字母。如果字符是字母,則函數返回零,如果不是,則函數返回零。

此函數相當簡單,不提供有關小寫字母或大寫字母的信息。對於這些情況,您必須使用不同的函數。

該函數可以通過檢查字符的 ascii 值輕鬆實現,然後它會相同但結果準確。

該函數占用一個字符並返回一個整數。

例:

    Input character is:‘a’
    Function will return 1


    Input character is:‘@’
    Function will return 0

ctype.h - C 中的 isalpha() 函數示例


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

int main()
{
	// defining the type of variable
	char a,b;

	// assigning the value of variable
	a = 'A';
	b = '1';

	// condition to check the character
	if (isalpha(a) != 0)
	{
		printf("%c is an alphabet\n", a);
	}
	else
	{
		printf("%c is not an alphabet\n", a);
	}

	// condition to check the character
	if (isalpha(b) != 0)
	{
		printf("%c is a the alphabet\n", b);
	}
	else
	{
		printf("%c is not a the alphabet\n", b);
	}

	return 0;
}

輸出

ctype.h - isalpha()  in c language



相關用法


注:本文由純淨天空篩選整理自Abhishek Sharma大神的英文原創作品 isalpha() function of ctype.h in C。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。