Skip to content

Creation of self referencing regexp throws exception "bad regex reference" #8

@Ramambahara

Description

@Ramambahara

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions