boost::urls::encode

Return a percent‐encoded string

Synopsis

template<
    class StringToken = string_token::return_string,
    class CharSet>
StringToken::result_type
encode(
    core::string_view s,
    CharSet const& unreserved,
    encoding_opts opt = = {},
    StringToken&& token) noexcept;

Description

This function applies percent‐encoding to the string using the given options and character set, and returns the result as a string when called with default arguments.

encoding_opts opt;
opt.space_as_plus = true;
std::string s = encode( "My Stuff", opt, pchars );

assert( s == "My+Stuff" );

Calls to allocate may throw.

Return Value

The string

Parameters

Name Description

s

The string to encode&period;

unreserved

The set of characters that is not percent&hyphen;encoded&period;

opt

The options for encoding&period; If this parameter is omitted, the default options are used&period;

token

A string token&period;

See Also