这个使用 Boost xpressive(最新版本)的简单示例会引发错误:Access violation reading location 0x000000
. 错误发生在 regex_match 上。这一定很简单,但我一直看着它,直到我疯了。
为什么这不起作用?
using namespace boost::xpressive;
std::string hello( "Apple Orange_" );
const boost::xpressive::sregex rex = boost::xpressive::sregex::compile("(\\w+)\\s(\\w+)_");
boost::xpressive::smatch what;
if( regex_match( hello, what, rex ) )
{
std::string s1 = what[0]; // whole match
std::string s2 = what[1]; // first capture
}