如何使用正则表达式c?

前端之家收集整理的这篇文章主要介绍了如何使用正则表达式c?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个c正则表达式的问题.
我有一个像“f 123/123 1234/123/124 12”这样的字符串,我希望在“/”之前得到所有数字.

这是我的正则表达式:

“\s(\d+)”.

我在http://rubular.com/上试过它并且它有效.
这是我的代码

std::regex rgx("\\s(\\d+)");
std::smatch match;

if (std::regex_search(line,match,rgx))
{
    std::cout << "Match\n";

    std::string *msg = new std::string();
    std::cout << "match[0]:" << match[0] << "\n";
    std::cout << "match[1]:" << match[1] << "\n";
    std::cout << "match[2]:" << match[2] << "\n";

}

但我明白了:

Match
match[0]:123
match[1]:123
match[2]:

我意识到match [0]不是像Python和Ruby那样的“组”.

解决方法

regex_search匹配一次(与正则表达式匹配的第一个子字符串).你需要循环.

试试以下:

std::regex rgx("\\s(\\d+)");
std::smatch match;

while (std::regex_search(line,rgx))
{
    std::cout << match[0] << std::endl;
    line = match.suffix().str();
}

猜你在找的正则表达式相关文章