Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit 0d33bc146b.
PrevUpHomeNext
static_url_base::set_fragment

(Inherited from url_base)

Set the fragment.

Synopsis
url_base&
set_fragment(
    core::string_view s);
Description

This function sets the fragment to the specified string, which may be empty. An empty fragment is distinct from having no fragment. Reserved characters in the string are percent-escaped in the result.

Example
assert( url( "?first=john&last=doe" ).set_encoded_fragment( "john doe" ).encoded_fragment() == "john%20doe" );
Postconditions
this->has_fragment() == true && this->fragment() == s
Complexity

Linear in this->size() + s.size().

Exception Safety

Strong guarantee. Calls to allocate may throw.

Parameters

Name

Description

s

The string to set.

BNF
fragment    = *( pchar / "/" / "?" )
Specification
See Also

remove_fragment, set_encoded_fragment.


PrevUpHomeNext