PythonとJavascriptについては同様の質問と回答が見つかりましたが、C#やその他のWinRT互換言語については見つかりませんでした。
必要だと思う理由は、Windows 8ストアアプリでWebサイトから取得したテキストを表示しているからです。例えば。 é
はé
になります。
または、より良い方法がありますか? WebサイトやRSSフィードではなく、Webサイトとそのタイトルのリストのみを表示しています。
System.Net.WebUtility.HtmlDecode (および[〜#〜]の使用をお勧めしますnot [〜#〜]HttpUtility.HtmlDecode
。
これは、System.Web
参照はWinforms/WPF/Consoleアプリケーションには存在せず、このクラスを使用してまったく同じ結果を得ることができます(すべてのプロジェクトで参照として既に追加されています)。
使用法:
string s = System.Net.WebUtility.HtmlDecode("é"); // Returns é
これは便利な場合があり、すべての(私の要件に関する限り)エンティティを同等のUnicodeに置き換えます。
public string EntityToUnicode(string html) {
var replacements = new Dictionary<string, string>();
var regex = new Regex("(&[a-z]{2,5};)");
foreach (Match match in regex.Matches(html)) {
if (!replacements.ContainsKey(match.Value)) {
var unicode = HttpUtility.HtmlDecode(match.Value);
if (unicode.Length == 1) {
replacements.Add(match.Value, string.Concat("&#", Convert.ToInt32(unicode[0]), ";"));
}
}
}
foreach (var replacement in replacements) {
html = html.Replace(replacement.Key, replacement.Value);
}
return html;
}
HttpUtility.HtmlDecode()
を使用します。msdnで読み取り ここ
decodedString = HttpUtility.HtmlDecode(myEncodedString)
MetroアプリとWP8アプリのHTMLエンティティとHTML番号の異なるコーディング/エンコード。
_{
string inStr = "ó";
string auxStr = System.Net.WebUtility.HtmlEncode(inStr);
// auxStr == ó
string outStr = System.Net.WebUtility.HtmlDecode(auxStr);
// outStr == ó
string outStr2 = System.Net.WebUtility.HtmlDecode("ó");
// outStr2 == ó
}
_
_{
string inStr = "ó";
string auxStr = System.Net.WebUtility.HtmlEncode(inStr);
// auxStr == ó
string outStr = System.Net.WebUtility.HtmlDecode(auxStr);
// outStr == ó
string outStr2 = System.Net.WebUtility.HtmlDecode("ó");
// outStr2 == ó
}
_
これを解決するために、WP8では、System.Net.WebUtility.HtmlDecode()
を呼び出す前に HTML ISO-8859-1リファレンス のテーブルを実装しました。
これは私にとってはうまくいき、一般的なエンティティとユニコードエンティティの両方を置き換えます。
private static readonly Regex HtmlEntityRegex = new Regex("&(#)?([a-zA-Z0-9]*);");
public static string HtmlDecode(this string html)
{
if (html.IsNullOrEmpty()) return html;
return HtmlEntityRegex.Replace(html, x => x.Groups[1].Value == "#"
? ((char)int.Parse(x.Groups[2].Value)).ToString()
: HttpUtility.HtmlDecode(x.Groups[0].Value));
}
[Test]
[TestCase(null, null)]
[TestCase("", "")]
[TestCase("'fark'", "'fark'")]
[TestCase(""fark"", "\"fark\"")]
public void should_remove_html_entities(string html, string expected)
{
html.HtmlDecode().ShouldEqual(expected);
}
改善されたZumeyメソッド(そこでコメントできません)。最大文字サイズはエンティティにあります:&exclamation; (11)。エンティティの大文字も可能です。 À( wiki からのソース)
public string EntityToUnicode(string html) {
var replacements = new Dictionary<string, string>();
var regex = new Regex("(&[a-zA-Z]{2,11};)");
foreach (Match match in regex.Matches(html)) {
if (!replacements.ContainsKey(match.Value)) {
var unicode = HttpUtility.HtmlDecode(match.Value);
if (unicode.Length == 1) {
replacements.Add(match.Value, string.Concat("&#", Convert.ToInt32(unicode[0]), ";"));
}
}
}
foreach (var replacement in replacements) {
html = html.Replace(replacement.Key, replacement.Value);
}
return html;
}