set_encoded_fragment
Set the fragment.
Synopsis
static_url&
set_encoded_fragment(pct_string_view s);
Defined in file <include/boost/url/static_url.hpp> on line 417
Description
This function sets the fragment to the specified string, which may contain percent-escapes and which may be empty. An empty fragment is distinct from having no fragment. Escapes in the string are preserved, and reserved characters in the string are percent-escaped in the result.
Example
assert( url("?first=john&last=doe" ).set_encoded_fragment( "john%2Ddoe" ).fragment() == "john-doe" );