gpt4 book ai didi

c++ - 如何检测整个字符串是否未使用 C++ 解析

转载 作者:行者123 更新时间:2023-11-30 02:15:04 26 4
gpt4 key购买 nike

我正在尝试解析字符串以检测它是数字还是名称等。为此,我举了“10 毫秒”这样的例子:它只解析 10 毫秒,不返回错误。我想做的是获取是否可以解析整个字符串,而不仅仅是它的一部分。

这是我的代码:

string s = "10 ms";
bool number = true;
try {
stof(s, nullptr);
} catch (invalid_argument){
number = false;
}

它返回的是一个数字。 stof 返回的数字是 10。我也尝试过使用 catch(...),同样的问题。

最佳答案

查看 std::stof 的文档,它有 2 个参数,其中一个是输出参数。

这可以通过以下方式使用:

#include <string>
#include <iostream>

int main(int, char**)
{
try
{
std::string s = "10 ms";
bool number = true;
std::size_t nofProcessedChar = 0;
auto nr = std::stof(s, &nofProcessedChar);
std::cout << "found " << nr << " with processed " << nofProcessedChar << std::endl;
auto allCharsProcessed = nofProcessedChar == s.size();
std::cout << "all processed: " << allCharsProcessed << std::endl;
}
catch(const std::invalid_argument &)
{
std::cout << "Invalid argument " << std::endl;
}
catch (const std::out_of_range &)
{
std::cout << "Out of range" << std::endl;
}
}

Code at compiler explorer

正如你在输出中看到的那样

found 10 with processed 2
all processed: 0

它为所有处理打印 0,这是 bool 的数字转换值。

关于c++ - 如何检测整个字符串是否未使用 C++ 解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56715482/

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