我有一个URI字符串(“ Franz%C3%B6sisch”)。如何使用德语变音符号(“Französisch”)将其转换为字符串?
致谢
答案 0 :(得分:2)
在网络应用中,使用System.Web.HttpUtility.UrlDecode。在网络应用程序外部,使用System.Net.WebUtility.UrlDecode。例如:
using System;
using System.Net;
public class Program
{
public static void Main()
{
Console.WriteLine(WebUtility.UrlDecode("Franz%C3%B6sisch"));
}
}
答案 1 :(得分:1)
在System.Net中查看UrlDecode方法
WebUtility.UrlDecode("%C3%B6")
答案 2 :(得分:0)
您可以尝试以下逻辑, https://dotnetfiddle.net/fyPgvG
系统。 Net具有WebUtility类,您可以从中使用UrlDecode方法。
WebUtility. UrlDecode("Franz%C3%B6sisch");