:relfileprefix: ../../../ [#D4BA0CD87896B43890C9C5EC52F7D66617BA1EF7] = Function authority_view::host pass:v,q[Return the host] == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- template StringToken::result_type host(StringToken&& token) const; ---- == Description pass:v,q[This function returns the host portion] pass:v,q[of the authority as a string, or the] pass:v,q[empty string if there is no authority.] pass:v,q[Any percent-escapes in the string are] pass:v,q[decoded first.] === Example [,cpp] ---- assert( url_view( "https://www%2droot.example.com/" ).host() == "www-root.example.com" ); ---- === Complexity pass:v,q[Linear in `this->host().size()`.] === Exception Safety pass:v,q[Calls to allocate may throw.] === BNF [,cpp] ---- host = IP-literal / IPv4address / reg-name IP-literal = "[" ( IPv6address / IPvFuture ) "]" reg-name = *( unreserved / pct-encoded / "-" / ".") ---- === Specification * link:https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2[3.2.2. Host (rfc3986)] == Return Value * `result_type` == Parameters |=== | Name | Type | *token* | `` |===