20 Mar
2012
20 Mar
'12
6:54 p.m.
Is there a way to have a regex like [[:digit:]]{3}([^\n]+)\n? have \n match any line breaking character? (The processed files might have Unix or DOS line endings.)
Use \R, see: http://www.boost.org/doc/libs/1_49_0/libs/regex/doc/html/boost_regex/syntax/... HTH, John.