Global eos
boost::xpressive::eos — End of sequence assertion.
Synopsis
Description
For the character sequence [begin, end), 'eos' matches the zero-width sub-sequence [end, end).
|
Note |
Unlike the perl end of sequence assertion $, 'eos' will not match at the position [end-1, end-1) if *(end-1) is '\n'. To get that behavior, use (!_n >> eos). |