Decode a percent-encoded URL string.
Declared in <common/url.h>
std::string
UrlDecode(std::string_view url_encoded);
Notably this implementation does not decode a '+' to a ' '.
The decoded string.
| Name | Description |
|---|---|
| url_encoded | The percent-encoded input string. |