Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Function template range

boost::xpressive::range — Match a range of characters.

Synopsis

// In header: <boost/xpressive/regex_primitives.hpp>


template<typename Char> unspecified range(Char ch_min, Char ch_max);

Description

Match any character in the range [ch_min, ch_max].

Parameters:

ch_max

The upper end of the range to match.

ch_min

The lower end of the range to match.


PrevUpHomeNext