RESTinio
|
Traits for parsing a query string in application/x-www-form-urlencoded mode. More...
#include <uri_helpers.hpp>
Additional Inherited Members | |
![]() | |
static constexpr bool | ordinary_char (char c) noexcept |
![]() | |
static string_view_t::size_type | find_next_separator (string_view_t where, string_view_t::size_type start_from) noexcept |
Traits for parsing a query string in application/x-www-form-urlencoded mode.
In that mode:
name=value
pairs can be concatenated only by &
;*
(0x2A), -
(0x2D), .
(0x2E), _
(0x5F), 0
..9
(0x30..0x39), A
..Z
(0x41..0x5A), a
..z
(0x61..0x7A);Reference for more details: https://url.spec.whatwg.org/#concept-urlencoded-byte-serializer
Usage example:
Definition at line 289 of file uri_helpers.hpp.