HexUnescape()

Uri::HexUnescape(const String&, int32_t&) method

Converts the specified hexadecimal representation of a character to a character.

static char16_t System::Uri::HexUnescape(const String &pattern, int32_t &index)

Arguments

ParameterTypeDescription
patternconst String&A string containing the hexadecimal representation of a character
indexint32_t&The position in pattern where the hexadecimal representation of a character begins

Return Value

The character represented by the hexadecimal encoding at position index. If the character at index is not hexadecimal encoded, the character at index is returned. The value of index is incremented to point to the character following the one returned.

See Also