Hi.
I'm trying to create composite regular expression by appending pieces one at a time.
Example:
#include <boost/xpressive/xpressive.hpp>
#include <iostream>
#include <string>
int main()
{
using namespace boost::xpressive;
using namespace std::string_literals;
auto regex = sregex{ bos >> as_xpr("foo") >> *_ };
regex = regex | sregex{ bos >> as_xpr("bar") >> *_ };
std::cout << regex_match("foololo"s, regex) << std::endl;
std::cout << regex_match("barlolo"s, regex) << std::endl;
return 0;
}
I get exception from regex = regex | sregex{ bos >> as_xpr("bar") >> *_ };. It seems that inside of assignment it enters boost::xpressive::detail::regex_matcher::static_compile_impl2(...), does impl->tracking_clear(); and partially clears contents of the temporary object on the right hand side of assignment operator.
It seems to me that my case is pretty similar to the case described in the Embedding a Regex by Value example. I am able to reproduce this behavior for boost 1.65.1 and 1.66.0 on both MSVC 2015 sp1 with /std:c++=latest and gcc 7.2.0.
How should I create such composite regular expression assuming I don't have all the pieces at once?
Hi.
I'm trying to create composite regular expression by appending pieces one at a time.
Example:
I get exception from
regex = regex | sregex{ bos >> as_xpr("bar") >> *_ };. It seems that inside of assignment it entersboost::xpressive::detail::regex_matcher::static_compile_impl2(...), doesimpl->tracking_clear();and partially clears contents of the temporary object on the right hand side of assignment operator.It seems to me that my case is pretty similar to the case described in the Embedding a Regex by Value example. I am able to reproduce this behavior for boost 1.65.1 and 1.66.0 on both MSVC 2015 sp1 with /std:c++=latest and gcc 7.2.0.
How should I create such composite regular expression assuming I don't have all the pieces at once?