关于boost.regex库的编译问题(C/C++)

时间:2022-09-09 00:11:45

       今天早上在学习boost的regex库时,编译时遇到了如下问题:1>LINK : fatal error LNK1104: 无法打开文件“libboost_regex-vc120-mt-gd-1_64.lib”。具体使用的程序如下:

#include<boost/regex.hpp>
#include<locale>
#include<iostream>
#include<string>
using namespace std;
void main()
{
 std::locale::global(std::locale("English"));
 string str = "hello world";
 boost::regex expr("\\w+\\s\\w+");
 cout << boost::regex_match(str, expr);
 cin.get();
}

        后来才发现没有将“libboost_regex-vc120-mt-gd-1_64.lib”所在的路径“E:\boost_1_64_0\stage\lib”添加到:(项目>属性>链接器>常规 >  附加目录库)中去,添加完成后,成功运行。