`c++
bool isNum(string str){ regex num_check("[1]+$"); return regex_match(str, num_check); } `
0-9 ↩︎