gpt4 book ai didi

c++ - 逗号分隔的正则表达式,除非逗号在括号内

转载 作者:太空狗 更新时间:2023-10-29 21:14:08 32 4
gpt4 key购买 nike

我需要像这样分隔一个字符串:

猫,狗, Ant (大象,狮子(老虎)),鸟

进入这个:

cat
dog
ant( elephant, lion(tiger))
bird

我当前的状态是这样的:(\w+)(,\s*)*,但这也将大象、狮子和老虎分开。此外,还保留了一些逗号和空格。

您可能已经猜到,我将在进一步的迭代中再次对 ant(...) 字符串调用相同的表达式。如果重要,我将在 C++ 中使用它。

最佳答案

This regex :

(\w+\(.+\))|\w+

会解析

cat, dog , ant( elephant, lion(tiger)), bird

进入:

cat
dog
ant( elephant, lion(tiger))
bird

完整程序:

#include <string>
#include <vector>
#include <iterator>
#include <regex>
#include <iostream>

int main()
{
std::string str{R"(cat, dog , ant( elephant, lion(tiger)), bird)"};
std::regex r{R"((\w+\(.+\))|\w+)"};

std::vector<std::string> result{};
auto it = std::sregex_iterator(str.begin(), str.end(), r);
auto end = std::sregex_iterator();
for(; it != end; ++it) {
auto match = *it;
result.push_back(match[0].str());
}
std::cout << "Input string: " << str << '\n';
std::cout << "Result:\n";
for(auto i : result)
std::cout << i << '\n';
}

live demo

关于c++ - 逗号分隔的正则表达式,除非逗号在括号内,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41663467/

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