boost::urls::url::url
Constructor
Synopsis
Declared in <boost/url/url.hpp>
explicit
url(core::string_view s);
Description
This function constructs a URL from the string s
, which must contain a valid URI or relative‐ref or else an exception is thrown. The new url retains ownership by allocating a copy of the passed string.
BNF
URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
relative-ref = relative-part [ "?" query ] [ "#" fragment ]
Parameters
Name |
Description |
s |
The string to parse. |
Created with MrDocs