Guest User

Untitled

a guest
Mar 22nd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. int main()
  2. {
  3. std::string parola="precipitevolissimevolmente";
  4. std::regex x ("[a-z]",std::regex_constants::basic);
  5. bool s =
  6. std::regex_search(parola.c_str(),x,std::regex_constants::match_any);
  7. std::cout<<std::endl<<s<<std::endl;
  8. return 0;
  9. }
Add Comment
Please, Sign In to add comment