12 Feb
2009
12 Feb
'09
4:02 p.m.
"Eric Niebler"
You can nest regular expressions to get the same behavior.
sregex re0 = as_xpr('$'); sregex re1 = re0 >> +_d; sregex re2 = re1 >> '.' >> _d >> _d;
You lose most of the benefits of static regular expressions when you do this, though.
You can also use BOOST_PROTO_AUTO if you have a sub-expression that's used a
lot.
You have to include header