web-dev-qa-db-ja.com

文字列に大文字または小文字が含まれているかどうかを確認します

文字列の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;
}
7
user7024664

標準のアルゴリズムを使用できます std::all_of

if( std::all_of( str.begin(), str.end(), islower ) { // all lowercase
}
12
Slava

これはラムダ式で簡単に実行できます。

if (std::count_if(a.begin(), b.end(), [](unsigned char ch) { return std::islower(ch); }) == 1) {
    // The string has exactly one lowercase character
    ...
}

これは、例のように、大文字/小文字を1つだけ検出することを前提としています。

4
dasblinkenlight

all_ofisupperおよび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を使用します。

4
krzaq