Sprawdzanie, czy ciąg ma tylko litery CPP

#include <regex>

bool contains_non_alpha
    = !std::regex_match(name, std::regex("^[A-Za-z]+$"));
Powerful Parrot