absl::CUnescape

Overload of CUnescape() with no error reporting.

Synopsis

Declared in <absl/strings/escaping.h>

bool
CUnescape(
    std::string_view source,
    std::string* dest);

Return Value

true on success, false if an error was encountered.

Parameters

NameDescription
sourceThe escaped string to unescape.
destThe output string that receives the unescaped result.