我从服务器收到 json:response: {text: 'Rize – The Orchid (Original Mix)'}
和之后JsonConvert.DeserializeObject<JSonR>(responseFromServer);
并获得“Rize &_ndash;(without _) The Orchid (Original Mix)”
我怎样才能得到这个字符串“Rize – The Orchid (Original Mix)”?
我从服务器收到 json:response: {text: 'Rize – The Orchid (Original Mix)'}
和之后JsonConvert.DeserializeObject<JSonR>(responseFromServer);
并获得“Rize &_ndash;(without _) The Orchid (Original Mix)”
我怎样才能得到这个字符串“Rize – The Orchid (Original Mix)”?
这个“符号”是一个需要解码的 html 实体。你可以用HttpUtility.HtmlDecode
这个。
这是一个例子
var str = "{text: 'Rize – The Orchid (Original Mix)'}";
str = HttpUtility.HtmlDecode(str);
var obj = JsonConvert.DeserializeObject<MockObject>(str);