[#absl-UrlUnescapePlus] = xref:absl.adoc[absl]::UrlUnescapePlus :relfileprefix: ../ :mrdocs: Performs the inverse transformation of UrlEscapePlus(). It returns `std::nullopt` if any % is not followed by two hexadecimal digits. == Synopsis Declared in `<absl/strings/escaping.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[nodiscard]] std::optional<std::string> UrlUnescapePlus(std::string_view input); ---- == Return Value The unescaped string, or `std::nullopt` on malformed input. [NOTE] ==== The return value https://en.cppreference.com/cpp/language/attributes/nodiscard[should not be discarded^]. ==== == Parameters [cols="1,4"] |=== | Name| Description | *input* | The percent‐encoded string to unescape. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#