boost.xpressive

来源:互联网 发布:hf系统线切割怎么编程 编辑:程序博客网 时间:2024/05/22 12:31
//made by davidsu33
//2014-6-11


#include <boost/config/warning_disable.hpp>
#include <QtCore/QCoreApplication>


#include <boost/xpressive/xpressive_dynamic.hpp>
#include <boost/xpressive/xpressive_static.hpp>
#include <boost/typeof/typeof.hpp>


void use_dynamic_xpressive()
{
std::string srx("^\\w{2}.?(x|y)z{3}$");
boost::xpressive::sregex rx1 = 
boost::xpressive::sregex::compile(srx);

std::string s = "a1.yzzz";
std::string s2 = "axxx";
std::string s3 = "a1.YYY";


boost::xpressive::smatch macher1;
bool b1 = boost::xpressive::regex_match(s.begin(), s.end(), macher1, rx1);


int mSize = macher1.size();
std::string str1 = macher1.str(0);
std::string str2 = macher1.str(1);
int pos1 = macher1.position(0);
int pos2 = macher1.position(1);

for (BOOST_AUTO(it , macher1.begin()); it != macher1.end(); ++it)
{
std::cout<<*it<<std::endl;
}


bool b2 = boost::xpressive::regex_match(s2.begin(), s2.end(), rx1);
bool b3 = boost::xpressive::regex_match(s3.begin(), s3.end(), rx1);
bool b4 = boost::xpressive::regex_match(s3.begin(), s3.end(), rx1);


boost::xpressive::sregex rx2 = 
boost::xpressive::sregex::compile(srx, boost::xpressive::icase);
bool b5 = boost::xpressive::regex_match(s3.begin(), s3.end(), rx2);


int xx = 0;
}


void use_static_xpressive()
{


}


int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
use_dynamic_xpressive();


return a.exec();
}
0 0
原创粉丝点击