Function encode
Apply percent-encoding to a string
Synopsis
Declared in header <boost/url/encode.hpp>
template<class CharSet>
std::size_t
encode(
char* dest,
std::size_t size,
core::string_view s,
const CharSet& unreserved,
encoding_opts opt = = {});
Description
Parameters
Name | Description |
---|---|
dest |
The destination buffer to write to. |
size |
The number of writable characters pointed to by |
s |
The string to encode. |
unreserved |
The set of characters that is not percent-encoded. |
opt |
The options for encoding. If this parameter is omitted, the default options are used. |