Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

วิธี Uri.EscapeDataString (สตริง) ใน C #


วิธี Uri.EscapeDataString() ใน C# จะแปลงสตริงเป็นการแสดงค่า Escape

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

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