C#의 Uri.EscapeDataString() 메서드는 문자열을 이스케이프된 표현으로 변환합니다.
구문
다음은 구문입니다 -
public static string EscapeDataString (string str);
위의 문자열 str은 이스케이프할 문자열입니다.
예시
이제 Uri.EscapeDataString() 메서드를 구현하는 예를 살펴보겠습니다. -
using System; public class Demo { public static void Main(){ string URI1 = "https://www.tutorialspoint.com/index.htm"; Console.WriteLine("URI = "+URI1); string URI2 = "https://www.tutorialspoint.com/"; Console.WriteLine("URI = "+URI2); Console.WriteLine("\nEscaped string (URI1) = "+Uri.EscapeDataString(URI1)); Console.WriteLine("Escaped string (URI2) = "+Uri.EscapeDataString(URI2)); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
URI = https://www.tutorialspoint.com/index.htm URI = https://www.tutorialspoint.com/ Escaped string (URI1) = https%3A%2F%2Fwww.tutorialspoint.com%2Findex.htm Escaped string (URI2) = https%3A%2F%2Fwww.tutorialspoint.com%2F