How to check if a string contains only lowercase letters in C++

1 Answer

0 votes
#include <iostream> 
#include <algorithm>

int main() 
{ 
    std::string s = "cppjavanodejsphp";
  
    bool b = all_of(s.begin(), s.end(), ::islower);
    
    std::cout << b;
} 
  
  
  
  
/*
run:
  
1
  
*/

 



answered Feb 7, 2020 by avibootz
edited Jul 25, 2024 by avibootz

Related questions

...