我有以下信息的字符串:如何刪除字符
\"[{\"CodRTA\":\"1\",\"MenssRTA\":\"messaje error\",\"Resp\":\"\"}]\"
,我需要刪除我試圖刪除如下字符\
,但性格使用系統和留下的代碼接近行
NSString *filtered = [[[restConnection stringData] componentsSeparatedByString:@"\"] componentsJoinedByString:@""];
NSLog(@"filtrado: %@", filtered);
誤差
Expected ']' in this part : componentsSeparatedByString:@"\"]
約不刪除它是什麼。並解析json。它提供了一個錯誤?我相信json解析器會處理這個問題。 – hasan83 2014-12-04 13:22:20
是的..這是json格式的字符串。那麼爲什麼不用json將它反序列化? – DipakSonara 2014-12-04 13:23:20
我想這樣使用JSON:json = [NSJSONSerialization JSONObjectWithData:string options:0 error:nil];但不總是工作結果爲空 – lycros 2014-12-04 13:27:18