Performs the inverse transformation of UrlEscapePlus(). It returns std::nullopt if any % is not followed by two hexadecimal digits.
Declared in <absl/strings/escaping.h>
[[nodiscard]]
std::optional<std::string>
UrlUnescapePlus(std::string_view input);
The unescaped string, or std::nullopt on malformed input.
The return value should not be discarded.
| Name | Description |
|---|---|
| input | The percent-encoded string to unescape. |