3 Apr
2006
3 Apr
'06
9:20 p.m.
Hi all, I'm sure this is just a configuration issue, but I'm not sure where my config is wrong. I'm using boost_regex_search, and capturing subgroups. When I use this regular expression: ^(*.)a(*.) On this string: "Management" I end up with the following matches: 0==> Management 1==> Man 2==> gement Should this be returning the following matches? 0==>Management 1==>M 2==>nagement 3==>Management 4==>Man 5==>gement Or am I getting exactly what I'm supposed to be getting here? Also, the default syntax is Perl syntax, correct? Thanks!