boost::urls::url_view_base::scheme
Return the scheme
Synopsis
Declared in header <boost/url/url_view_base.hpp>
core::string_view
scheme() const noexcept;
Description
This function returns the scheme if it exists, without a trailing colon (':'). Otherwise it returns an empty string. Note that schemes are case-insensitive, and the canonical form is lowercased.
BNF
scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )
URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
absolute-URI = scheme ":" hier-part [ "?" query ]
See Also
has_scheme , scheme_id .