C++ 中的islower() 函數檢查給定字符是否為小寫字符。
islower() 原型
int islower(int ch);
islower()
函數檢查 ch
是否按照當前 C 語言環境分類為小寫。默認情況下,從 a 到 z(ascii 值 97 到 122)的字符是小寫字符。
如果 ch
的值不能表示為 unsigned char 或不等於 EOF,則 islower()
的行為未定義。
它在<cctype> 頭文件中定義。
參數:
ch
:要檢查的字符。
返回:
如果ch
為小寫,則islower()
函數返回非零值,否則返回零。
示例:islower() 函數的工作原理
#include <cctype>
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char str[] = "This Program Converts ALL LowerCase Characters to UpperCase";
for (int i=0; i < strlen(str); i++)
{
if (islower(str[i]))
/* Converting lowercase characters to uppercase */
str[i] = str[i] - 32;
}
cout << str;
return 0;
}
運行程序時,輸出將是:
THIS PROGRAM CONVERTS ALL LOWERCASE CHARACTERS TO UPPERCASE
相關用法
- C++ isless()用法及代碼示例
- C++ islessequal()用法及代碼示例
- C++ islessgreater()用法及代碼示例
- C++ is_unsigned用法及代碼示例
- C++ is_fundamental用法及代碼示例
- C++ isdigit()用法及代碼示例
- C++ iswdigit()用法及代碼示例
- C++ is_scalar用法及代碼示例
- C++ is_pointer用法及代碼示例
- C++ is_polymorphic用法及代碼示例
- C++ isalpha()用法及代碼示例
- C++ is_rvalue_reference用法及代碼示例
- C++ is_class用法及代碼示例
- C++ iswxdigit()用法及代碼示例
- C++ isfinite()用法及代碼示例
- C++ isnormal()用法及代碼示例
- C++ ispunct()用法及代碼示例
- C++ iswupper()用法及代碼示例
- C++ is_trivial用法及代碼示例
- C++ is_void用法及代碼示例
注:本文由純淨天空篩選整理自 C++ islower()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。