& Eacute ; \u00C9
& egrave ; \u00E8
& eacute ; \u00E9
& apos ; \u0027
类似的东西:
f("'") = '\u0027' where f :: string -> char
g('\u0027') = "'" where g :: char -> string
或者是否有第三方图书馆拥有BSD或MIT风格的许可免费许可证?否则我将不得不创建自己的映射,但它非常紧急,我不想错过可用的功能。
答案 0 :(得分:3)
您可以使用SecurityElement.Escape method从unicode转到字符实体:
char c = '\u0027';
string entity = System.Security.SecurityElement.Escape(c.ToString());
Console.WriteLine(entity);
至于反过来,我认为你运气不好,需要编写自己的方法。
编辑:您可能还会发现HttpUtility.HtmlEncode和HttpUtility.HtmlDecode方法很有用。要使用它们,您需要添加对System.Web的引用。