文字列の1文字が大文字であるかどうかを確認できるかどうか知りたいのですが。文字列内のすべての文字が大文字または小文字の場合、それを確認する別の方法。例:
string a = "aaaaAaa";
string b = "AAAAAa";
if(??){ //Cheking if all the string is lowercase
cout << "The string a contain a uppercase letter" << endl;
}
if(??){ //Checking if all the string is uppercase
cout << "The string b contain a lowercase letter" << endl;
}
標準のアルゴリズムを使用できます std::all_of
if( std::all_of( str.begin(), str.end(), islower ) { // all lowercase
}
これはラムダ式で簡単に実行できます。
if (std::count_if(a.begin(), b.end(), [](unsigned char ch) { return std::islower(ch); }) == 1) {
// The string has exactly one lowercase character
...
}
これは、例のように、大文字/小文字を1つだけ検出することを前提としています。
all_of
をisupper
およびislower
と組み合わせて使用します。
if(all_of(a.begin(), a.end(), &::isupper)){ //Cheking if all the string is lowercase
cout << "The string a contain a uppercase letter" << endl;
}
if(all_of(a.begin(), a.end(), &::islower)){ //Checking if all the string is uppercase
cout << "The string b contain a lowercase letter" << endl;
}
または、述語に一致する文字数を確認する場合は、count_if
を使用します。