I have the following regular expression for matching a URI/URL(worksfine with PCRE, note I have escaped ++ to work with boost::regex butotherwise unchanged):
What regex did you use with pcre? They should behave exactly the same, did you mean to use
"[something]+\\+"
ie "something" is repeated and then followed by a literal "+"? Rather than:
"[something]\\+\\+"
which matches a literal "something++" which doesn't I think occur in a URL?
John.
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build