다음을 통해 공유


Uri.IsHexEncoding 메서드

문자열의 문자가 16진수로 인코딩되었는지 여부를 확인합니다.

네임스페이스: System
어셈블리: System(system.dll)

구문

‘선언
Public Shared Function IsHexEncoding ( _
    pattern As String, _
    index As Integer _
) As Boolean
‘사용 방법
Dim pattern As String
Dim index As Integer
Dim returnValue As Boolean

returnValue = Uri.IsHexEncoding(pattern, index)
public static bool IsHexEncoding (
    string pattern,
    int index
)
public:
static bool IsHexEncoding (
    String^ pattern, 
    int index
)
public static boolean IsHexEncoding (
    String pattern, 
    int index
)
public static function IsHexEncoding (
    pattern : String, 
    index : int
) : boolean

매개 변수

  • pattern
    확인할 문자열입니다.
  • index
    16진수 인코딩을 확인할 pattern의 위치입니다.

반환 값

pattern이 지정된 위치에 16진수로 인코딩되어 있으면 true이고, 그렇지 않으면 false입니다.

설명

IsHexEncoding 메서드는 문자열에서 "%hexhex" 패턴을 따르는 16진수 인코딩을 확인합니다. 여기서 "hex"는 0-9의 숫자나 A-F(대/소문자 구분 없음)의 문자입니다.

예제

다음 코드 예제에서는 문자가 16진수로 인코딩되었는지 여부를 확인하고 인코딩된 경우 해당 문자를 콘솔에 씁니다.

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

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

Uri 클래스
Uri 멤버
System 네임스페이스