Global print
boost::xpressive::print — Matches a printable character.
Synopsis
Description
The regex traits are used to determine which characters are printable. To match any character that is not printable, use ~print.
![[Note]](../../../../doc/src/images/note.png) |
Note |
print is equivalent to /[[:print:]]/ in perl. ~print is equivalent to /[[:^print:]]/ in perl. |