3 Aug
2002
3 Aug
'02
4:04 p.m.
Regular expressions match sequences of characters. Your match says to match
a string when both of 2 different matching possibilities exist anywhere in
the string. To do this you must use 2 separate regular expression matches
separating them by the normal C++ "&&" operator.
"Mads M.P."
I've been looking for a parameter like "AND" when using regular expressions (from boost 1.28). I need a match on "a AND is" when searching a sentence like "This is a test". Is there a way to create such a search string by using regular expressions ?