2015-03-10 07:21:00 +01:00
|
|
|
encode and decode strings into and from application/x-www-form-urlencoded
|
|
|
|
|
|
|
|
The application/x-www-form-urlencoded format encodes a ordered data sets of
|
2015-09-20 23:12:20 +02:00
|
|
|
pairs consisting of a name and a value, with pairs separated by ampersand or
|
|
|
|
semicolon and names and values separated by the equal sign. Space characters
|
2015-03-10 07:21:00 +01:00
|
|
|
are replaced with plus sign and any characters not in the unreserved character
|
|
|
|
set is encoded using the percent-encoding scheme also used for resource
|
2016-05-19 12:53:05 +02:00
|
|
|
identifiers.
|
|
|
|
A percent-encoded octet is encoded as a character triplet, consisting of the
|
2015-03-10 07:21:00 +01:00
|
|
|
percent character "%" followed by the two hexadecimal digits representing that
|
|
|
|
octet's numeric value.
|
|
|
|
|
|
|
|
WWW: https://metacpan.org/pod/URL::Encode
|