:relfileprefix: ../../../ [#boost-urls-static_url-2constructor-08] == xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/static_url.adoc[pass:[static_url]]::static_url Constructor === Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- explicit static_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 making a copy of the passed string. [,cpp] ---- static_url< 1024 > u( "https://www.example.com" ); ---- [,cpp] ---- return static_url( parse_uri_reference( s ).value() ); ---- [,cpp] ---- this->buffer().data() != s.data() ---- === Linear in `s.size()`. === Exceptions thrown on invalid input. [,cpp] ---- URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ] relative-ref = relative-part [ "?" query ] [ "#" fragment ] ---- * link:https://datatracker.ietf.org/doc/html/rfc3986#section-4.1[4.1. URI Reference] === Exceptions |=== | Name | Thrown on | `The` | input does not contain a valid url. |=== === Parameters |=== | Name | Description | *s* | The string to parse. |===