boost::urls::string_to_scheme
Return the known scheme for a non‐normalized string, if known
Synopsis
Declared in <include/boost/url/scheme.hpp>
scheme
string_to_scheme(core::string_view s) noexcept;
Description
If the string does not identify a known scheme, the value scheme::unknown is returned.
scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )
Parameters
Name | Description |
---|---|
s |
The string holding the scheme |
Created with MrDocs