Uri.HexUnescape(String, Int32) Método

Definição

Converte uma representação hexadecimal especificada de um caractere no caractere.

public:
 static char HexUnescape(System::String ^ pattern, int % index);
public static char HexUnescape (string pattern, ref int index);
static member HexUnescape : string * int -> char
Public Shared Function HexUnescape (pattern As String, ByRef index As Integer) As Char

Parâmetros

pattern
String

A representação hexadecimal de um caractere.

index
Int32

O local no pattern em que começa a representação hexadecimal de um caractere.

Retornos

Char

O caractere representado pela codificação hexadecimal na posição index. Se o caractere no index não for codificado em hexadecimal, o caractere no index será retornado. O valor de index é incrementado para apontar para o caractere seguinte ao retornado.

Exceções

index é menor que 0 ou maior ou igual ao número de caracteres em pattern.

Comentários

O exemplo de código a seguir determina se um caractere é codificado hexadecimal e, em caso afirmativo, grava o caractere equivalente no console.

String^ testString = "%75";
int index = 0;
if ( Uri::IsHexEncoding( testString, index ) )
{
   Console::WriteLine( "The character is {0}",
      Uri::HexUnescape( testString, index ) );
}
else
{
   Console::WriteLine( "The character is not hex encoded" );
}
string testString = "%75";
int index = 0;
if (Uri.IsHexEncoding(testString, index))
     Console.WriteLine("The character is {0}", Uri.HexUnescape(testString, ref index));
else
     Console.WriteLine("The character is not hexadecimal encoded");
let testString = "%75"
let mutable index = 0
if Uri.IsHexEncoding(testString, index) then
    printfn $"The character is {Uri.HexUnescape(testString, &index)}"
else
    printfn "The character is not hexadecimal encoded"
Dim testString As String = "%75"
Dim index As Integer = 0
If Uri.IsHexEncoding(testString, index) Then
    Console.WriteLine("The character is {0}", Uri.HexUnescape(testString, index))
Else
    Console.WriteLine("The character is not hexadecimal encoded")
End If

Aplica-se a