正则表达式判断是否是数字

`c++

include

bool isNum(string str){
regex num_check("[1]+$");
return regex_match(str, num_check);
}
`


  1. 0-9 ↩︎

posted @ 2024-10-05 11:24  Danlis  阅读(5)  评论(0编辑  收藏  举报