C/C++教程

c++11新特性正则匹配

本文主要是介绍c++11新特性正则匹配,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

下面是示例

#include <iostream>
#include <string>
#include <fstream>
#include <regex>
int main()
{
    std::ifstream file("d:/xudp.html");
    std::istreambuf_iterator<char> begin(file), end;
    std::string str(begin, end);

    std::regex reg("<a [^>]*>");
    std::smatch m;
    for (auto cur = std::sregex_iterator(str.begin(), str.end(), reg);cur != std::sregex_iterator();++cur)
    {
            std::cout<<(*cur).str()<<std::endl;
    }
    std::cin.get();
    return 0;
}

 

这篇关于c++11新特性正则匹配的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!