gpt4 book ai didi

c++ - 如何确定字符串是否为 C++ 中的数字?

转载 作者:IT老高 更新时间:2023-10-28 11:52:19 29 4
gpt4 key购买 nike

我在尝试编写一个检查字符串是否为数字的函数时遇到了很多麻烦。对于我正在编写的游戏,我只需要检查我正在读取的文件中的一行是否是数字(我会知道它是否是这样的参数)。我编写了以下函数,我认为它运行顺利(或者我不小心编辑以停止它,或者我精神 split 症或 Windows 精神 split 症):

bool isParam (string line)
{
if (isdigit(atoi(line.c_str())))
return true;

return false;
}

最佳答案

最有效的方法是遍历字符串,直到找到一个非数字字符。如果有非数字字符,可以认为字符串不是数字。

bool is_number(const std::string& s)
{
std::string::const_iterator it = s.begin();
while (it != s.end() && std::isdigit(*it)) ++it;
return !s.empty() && it == s.end();
}

或者如果你想用 C++11 的方式来做:

bool is_number(const std::string& s)
{
return !s.empty() && std::find_if(s.begin(),
s.end(), [](unsigned char c) { return !std::isdigit(c); }) == s.end();
}

正如下面评论中所指出的,这仅适用于正整数。如果您需要检测负整数或分数,您应该使用更强大的基于库的解决方案。虽然,添加对负整数的支持非常简单。

关于c++ - 如何确定字符串是否为 C++ 中的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4654636/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com