Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字段的 JSON 对象具有字符串值
" Ran a defrag removed a few virus' and tried again "
'是 JSON 中的特殊字符。我正在使用 c#,NewtonSoftJSON 库。
'
有什么最好的方法可以用 Newtonsoft 和 c# 转义所有特殊字符。
你可以试试这个:
HttpUtility.JavaScriptStringEncode(inputString);
这对我有用->
System.Web.Helpers.Json.Encode(inputString).Substring(1, System.Web.Helpers.Json.Encode(inputString).Length - 2);