vc6 支持正则表达式

 

 最新版的boost库不支持vc6, 支持vc6的最高版为1.34

故在网上下载boost_1_34_1,解压。

两种方式编译:

1. 运行

boost_1_34_1\tools\jam\src\build.bat, 生成bjam,

拷贝到boost_1_34_1,执行:

bjam --toolset=msvc  --with-regex --build-type=complete stage

这样在stage目录生成dll和lib. 后面会用到。

 

2. 运行

   cd boost_1_34_1\libs\regex\build

  vcvars32.bat 

 nmake -f vc6.mak

 同样生成dll和lib.

 

然后进行测试:

#include "stdafx.h"
#include <boost/regex.hpp>
#include <iostream>


boost::regex expression("^select ([a-zA-Z]*) from ([a-zA-Z]*)");


int main(int argc, char* argv[])
{

	boost::cmatch what;
	char *result;
	const char buff[]="select stower from chengdu";
	if(boost::regex_match(buff,what,expression))
	{
		int n= what.size();
		for(int i=0;i<n;i++)
		std::cout<<what[i].str()<<std::endl;	
	}
	return 0;
}


编译前加入头文件路径和库文件路径,include 指定 boost_1_34_1路径,lib 指定\boost_1_34_1\stage\lib即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值