boost::urls::url_view_base::encoded_fragment

Return the fragment

Synopsis

Declared in <include/boost/url/url_view_base.hpp>

pct_string_view
encoded_fragment() const noexcept;

Description

This function returns the fragment as a string with percent-escapes. Ownership is not transferred; the string returned references the underlying character buffer, which must remain valid or else undefined behavior occurs.

assert( url_view( "http://www.example.com/index.htm#a%2D1" ).encoded_fragment() == "a%2D1" );

Constant.

Throws nothing.

fragment = *( pchar / "/" / "?" ) pchar = unreserved / pct-encoded / sub-delims / ":" / "@"
  • 3.5. Fragment (rfc3986)
  • See Also

    fragment , has_fragment .

    Created with MrDocs