Boost.URL

    • Quick Look
    • URLs
      • Parsing
      • Containers
      • Segments
      • Params
      • Normalization
      • String Token
      • Percent Encoding
      • Formatting
    • Customization
      • Parse Rules
      • Character Sets
      • Compound Rules
      • Ranges
      • RFC 3986
    • Examples
      • QR Code
      • Finicky
      • mailto URLs
      • Magnet Link
      • File Router
      • Router
      • Sanitizing URLs
    • Reference
      • Concepts
        • CharSet
        • Rule
        • StringToken
      • Help Card
  • boost::urls::grammar::all_chars

boost::urls::grammar::all_chars

The set of all characters

Synopsis

Declared in <include/boost/url/grammar/all_chars.hpp>

constexpr
    _implementation‐defined_ all_chars = all_chars{};

Description

Character sets are used with rules and the

functions find_if and find_if_not .

system::result< core::string_view > rv = parse( "JohnDoe", token_rule( all_chars ) );
ALL       = %x00-FF

See Also

find_if , find_if_not , parse , token_rule .

Created with MrDocs