コード例 #1
0
        public void UnescapeHtml()
        {
            StringOperators.UnescapeHtml("&quot;Me &lt; Me &amp; Jou, Jou &gt; Me.&quot;, said he.").Should().Be("\"Me < Me & Jou, Jou > Me.\", said he.");

            StringOperators.FpUnescape("1 &lt; 5", "html").Should().Be("1 < 5");
        }