C# で HttpUtility.JavaScriptStringEncode() でエンコードされた文字列をデコードする方法はありますか?
エンコードされた文字列の例:
<div class=\"header\"><h2>\u00FC<\/h2><script>\n<\/script>\n
私の一時的な解決策は次のとおりです。
public static string JavaScriptStringDecode(string source)
{
// Replace some chars.
var decoded = source.Replace(@"\'", "'")
.Replace(@"\""", @"""")
.Replace(@"\/", "/")
.Replace(@"\t", "\t")
.Replace(@"\n", "\n");
// Replace unicode escaped text.
var rx = new Regex(@"\\[uU]([0-9A-F]{4})");
decoded = rx.Replace(decoded, match => ((char)Int32.Parse(match.Value.Substring(2), NumberStyles.HexNumber))
.ToString(CultureInfo.InvariantCulture));
return decoded;
}