& Eacute ;  \u00C9
& egrave ;  \u00E8
& eacute ;  \u00E9
& apos   ;  \u0027

就像是:
f("'") = '\u0027' where f :: string -> char
g('\u0027') = "'" where g :: char -> string

还是存在具有BSD或MIT样式的免费免费许可证的第三方库?否则,我将不得不创建自己的映射,但这非常紧急,我不想错过可用的功能。

最佳答案

您可以使用SecurityElement.Escape method从unicode转换为字符实体:

char c = '\u0027';
string entity = System.Security.SecurityElement.Escape(c.ToString());
Console.WriteLine(entity);

至于倒退,我认为您很不走运,需要编写自己的方法。

编辑:您可能还会发现HttpUtility.HtmlEncodeHttpUtility.HtmlDecode方法很有用。要使用它们,您需要添加对System.Web的引用。

关于c# - .NET是否具有在字符实体及其unicode值之间映射的内置函数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2346319/

10-10 06:04