Subject: Re: [Boost-users] boost matching \b and match_not_null flag
From: John Maddock (boost.regex_at_[hidden])
Date: 2010-07-25 12:47:54


>I don't understand this behavior, am I missing something?

You have set a flag that says "never match a zero length string" and passed
a regular expression that can *only ever match a zero length string* ... as
a result no match can ever be found.

HTH, John.