Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
static_url_base::encoded_host

(Inherited from url_view_base)

Return the host.

Synopsis
pct_string_view
encoded_host() const;
Description

This function returns the host portion of the authority as a string, or the empty string if there is no authority. The returned string may contain percent escapes.

Example
assert( [link url.ref.boost__urls__url_view_base.url_view `url_view`]( "https://www%2droot.example.com/" ).[link url.ref.boost__urls__static_url_base.encoded_host `encoded_host`]() == "www%2droot.example.com" );
Complexity

Constant.

Exception Safety

Throws nothing.

BNF
[link url.ref.boost__urls__static_url_base.host `host`]        = IP-literal / IPv4address / reg-[link url.ref.boost__urls__host_type `name`]

IP-literal  = "[" ( IPv6address / IPvFuture  ) "]"

reg-[link url.ref.boost__urls__host_type `name`]    = *( unreserved / pct-encoded / "-" / "." )
Specification

PrevUpHomeNext