コード例 #1
0
        public void UnescapeJson()
        {
            StringOperators.UnescapeJson("hi\\t\\\"there\\\"! \\\\/").Should().Be("hi\t\"there\"! \\/");

            StringOperators.FpUnescape("hi\\nthere", "json").Should().Be("hi\nthere");
        }