islower
是一個C++標準庫函數,用于檢查給定字符是否為小寫字母
以下是一個簡單的示例,展示了如何在C++中使用 islower
函數處理字符串:
#include<iostream>
#include <cctype> // 包含 islower 函數所在的頭文件
int main() {
std::string input = "Hello, World!";
for (char c : input) {
if (std::islower(c)) { // 使用 islower 函數檢查字符是否為小寫
std::cout << c;
}
}
return 0;
}
在這個示例中,我們遍歷輸入字符串 input
中的每個字符,并使用 islower
函數檢查它是否為小寫字母。如果是,則將其輸出到控制臺。
注意:在使用 islower
函數之前,請確保已經包含了 <cctype>
頭文件。