标签: c++
我正在尝试查看字符串是否包含数字。当我在该站点上搜索时,我看到了说std::any_of(password.begin(), password.end(), ::isdigit)的实现,并且应该返回布尔值true或false。 但是,Visual Studio一直说名称空间std没有成员any_of。
std::any_of(password.begin(), password.end(), ::isdigit)
答案 0 :(得分:2)
std::any_of位于<algorithm>标头中,您需要添加标头:
std::any_of
<algorithm>
#include <algorithm>
Reference