boost::urls::url_view_base::scheme
Return the scheme
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.
assert( url_view( "http://www.example.com" ).scheme() == "http" );
See Also
has_scheme , scheme_id .
Created with MrDocs