gpt4 book ai didi

c++ - 从字符串中提取数字 (Regex C++)

转载 作者:行者123 更新时间:2023-11-28 02:36:03 25 4
gpt4 key购买 nike

假设我有一个字符串 S = "1 this is a number=200; Val+54 4class find57"

我想使用 Regex 只提取这个数字:

   num[1] = 1
num[2] = 200
num[3] = 54

而不是“4class”中的 4 或“find57”中的 57,这意味着只有被 Operatorsspace 包围的数字。我试过这段代码但没有结果:

std::string str = "1 this is a number=200; Val+54 4class find57";
boost::regex re("(\\s|\\-|\\*|\\+|\\/|\\=|\\;|\n|$)([0-9]+)(\\s|\\-|\\*|\\+|\\/|\\;|\n|$)");
boost::sregex_iterator m1(str.begin(), str.end(), re);
boost::sregex_iterator m2;
for (; m1 != m2; ++m1) {

advm1->Lines->Append((*m1)[1].str().c_str());

}

顺便说一下,我正在使用 c++ Builder XE6。

最佳答案

只需使用单词边界。 \b 匹配单词字符和非单词字符。

\b\d+\b

\b[0-9]+\b

DEMO

必要时再转义一次反斜杠,如 \\b\\d+\\b\\b[0-9]+\\b

关于c++ - 从字符串中提取数字 (Regex C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27400131/

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