boost::urls::uri_rule

Rule for URI

Synopsis

constexpr
/* implementation-defined */ const uri_rule = {};

Description

using value_type = url_view;

Example

Rules are used with the function grammar::parse.

system::result< url_view > rv = grammar::parse( "https://www.example.com/index.htm?id=guest#s1", uri_rule );
URI           = scheme ":" hier-part [ "?" query ] [ "#" fragment ]

See Also