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