ใน. Net 4.5+ ใช้ WebUtility
สำหรับการจัดรูปแบบฉันส่งคำตอบนี้เป็นคำตอบ
ไม่พบตัวอย่างที่ดีเปรียบเทียบกับ:
string testString = "http://test# space 123/text?var=val&another=two";
Console.WriteLine("UrlEncode: " + System.Web.HttpUtility.UrlEncode(testString));
Console.WriteLine("EscapeUriString: " + Uri.EscapeUriString(testString));
Console.WriteLine("EscapeDataString: " + Uri.EscapeDataString(testString));
Console.WriteLine("EscapeDataReplace: " + Uri.EscapeDataString(testString).Replace("%20", "+"));
Console.WriteLine("HtmlEncode: " + System.Web.HttpUtility.HtmlEncode(testString));
Console.WriteLine("UrlPathEncode: " + System.Web.HttpUtility.UrlPathEncode(testString));
//.Net 4.0+
Console.WriteLine("WebUtility.HtmlEncode: " + WebUtility.HtmlEncode(testString));
//.Net 4.5+
Console.WriteLine("WebUtility.UrlEncode: " + WebUtility.UrlEncode(testString));
ขาออก:
UrlEncode: http%3a%2f%2ftest%23+space+123%2ftext%3fvar%3dval%26another%3dtwo
EscapeUriString: http://test#%20space%20123/text?var=val&another=two
EscapeDataString: http%3A%2F%2Ftest%23%20space%20123%2Ftext%3Fvar%3Dval%26another%3Dtwo
EscapeDataReplace: http%3A%2F%2Ftest%23+space+123%2Ftext%3Fvar%3Dval%26another%3Dtwo
HtmlEncode: http://test# space 123/text?var=val&another=two
UrlPathEncode: http://test#%20space%20123/text?var=val&another=two
//.Net 4.0+
WebUtility.HtmlEncode: http://test# space 123/text?var=val&another=two
//.Net 4.5+
WebUtility.UrlEncode: http%3A%2F%2Ftest%23+space+123%2Ftext%3Fvar%3Dval%26another%3Dtwo
ใน. Net 4.5+ ใช้ WebUtility
.UrlEncode
สิ่งนี้ดูเหมือนจะทำซ้ำHttpUtility.UrlEncode
(pre-v4.0) สำหรับอักขระทั่วไป:
Uri.EscapeDataString(testString).Replace("%20", "+").Replace("'", "%27").Replace("~", "%7E")
หมายเหตุ: EscapeUriString
จะเก็บสตริง uri ที่ถูกต้องซึ่งทำให้ใช้อักขระ plaintext มากที่สุดเท่าที่จะทำได้
ดูคำตอบนี้สำหรับตารางเปรียบเทียบการเข้ารหัสต่างๆ:
https://stackoverflow.com/a/11236038/555798
ตัวแบ่งบรรทัด
ทั้งหมดของพวกเขาที่นี่ (นอกเหนือจากHttpUtility.HtmlEncode
) จะถูกแปลง"\n\r"
เป็น%0a%0d
หรือ%0A%0D
โปรดแก้ไขและเพิ่มตัวละครใหม่ลงในชุดทดสอบของฉันหรือทิ้งไว้ในความคิดเห็นและฉันจะแก้ไข