gpt4 book ai didi

c++ - 正则表达式只有字符串中的数字 C++

转载 作者:搜寻专家 更新时间:2023-10-31 00:31:42 29 4
gpt4 key购买 nike

我正在寻找一个正则表达式来查找字符串中的数字;如果我有这样的字符串:

li 12.12 si 43,23 45 31 uf 889 uf31 3.12345

我只想找到数字:

12.12 45 31 889 3.12345

我尝试了以下模式:

((\\+|-)?[[:digit:]]+)(\\.(([[:digit:]]+)?))?

但输出包括 uf3143,23

我试过:

(?!([a-z]*((\\+|-)?[[:digit:]]+)(\\.(([[:digit:]]+)?)) ?[a-z]*))?((\\+|-)?[[:digit:]]+)(\\.(([[:digit:]]+)?))?

但这给出了相同的结果。

解决方案是什么?

解决方案留给后代的解决方案:

最佳答案

实际上,C++ 正则表达式模块支持先行

这是我的建议:

#include <iostream>
#include <regex>
using namespace std;

int main() {
std::string buffer = " li 12.12 si 43,23 45 31 uf 889 uf31 3.12345";
std::regex rx(R"((?:^|\s)([+-]?[[:digit:]]+(?:\.[[:digit:]]+)?)(?=$|\s))"); // Declare the regex with a raw string literal
std::smatch m;
std::string str = buffer;
while (regex_search(str, m, rx)) {
std::cout << "Number found: " << m[1] << std::endl; // Get Captured Group 1 text
str = m.suffix().str(); // Proceed to the next match
}
return 0;
}

参见 IDEONE demo

由于原始字符串字面量声明,不需要在 \s 中使用双反斜杠。

先行 (?=$|\s) 检查是否存在,但不消耗空格,可以提取连续的数字。

注意,如果你需要提取像.5这样的十进制值,你需要

R"((?:^|\s)([+-]?[[:digit:]]*\.?[[:digit:]]+)(?=$|\s))"

关于c++ - 正则表达式只有字符串中的数字 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33520934/

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