Прочетете на английски Редактиране

Споделяне чрез


Uri.HexUnescape(String, Int32) Method

Definition

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

C#
public static char HexUnescape(string pattern, ref int index);

Parameters

pattern
String

The hexadecimal representation of a character.

index
Int32

The location in pattern where the hexadecimal representation of a character begins.

Returns

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.

Exceptions

index is less than 0 or greater than or equal to the number of characters in pattern.

Remarks

The following code example determines whether a character is hexadecimal encoded and, if so, writes the equivalent character to the console.

C#
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");

Applies to

Продукт Версии
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1