islower,計算機函式,檢查參數c是否為小寫英文字母。
基本介紹
- 中文名:islower函式
- 表達式:int islower(int c);
- 套用學科:計算機編程
- 適用領域範圍:C++,C,Python
- 類型:字元串函式
- 相關函式:isdigit(),isupper()
簡介,範例,
簡介
相關函式
isalpha,isupper
表頭檔案
#include<ctype.h>
定義函式
int islower(int c)
返回值
若參數c為小寫英文字母,則返回TRUE,否則返回NULL(0)。
附加說明
此為宏定義,非真正函式。
範例
#include<ctype.h>main(){char str[]="123@#FDsP[e?";int i;for(i=0;str[i]!=0;i++)if(islower(str[i]))printf("%c is a lower-case character\n",str[i]);}
執行
s is a lower-case character
e is a lower-case character