0

在搜索Anil_Ambani时,我从 wikipedia api 得到了流动的 json 响应。我使用了这个 api。我得到以下回复

<i>$2 = 0x071882f0 {{BLP sources|date=June 2012}}
{{Infobox person
| name             = Anil Ambani 
| image            =AnilAmbani.jpg
| image_size       = 
| caption          = Ambani in 2009
| birth_date       = {{Birth date and age|1959|6|4|df=y}}
| birth_place      = [[Mumbai]], [[Maharashtra]], [[India]]
| nationality      = Indian
| occupation       = Chairman of [[Anil Dhirubhai Ambani Group]] 
| networth         = {{loss}} [[United States dollar|$]]5.2 billion (2012)<ref         name="forbes.com">[http://www.forbes.com/profile/anil-ambani/.] Forbes.com. Retrieved April 2013.</ref> 
| residence        = Mumbai, Maharashtra, India
| alma_mater       = [[Warwick Business School]]<br />[[Wharton School of the University of Pennsylvania|The Wharton School]]
| parents          = [[Dhirubhai Ambani]]<br>Kokilaben Ambani
| brother          = [[Mukesh Ambani]]
| spouse           = [[Tina Ambani]]
| children         = 2<ref>{{cite web|url=http://www.indiatoday.com/itoday/20050221/power9.html |title=India Today 2005 Power List |publisher=Indiatoday.com |date=2005-02-21 |accessdate=2010-12-31}}</ref>
|religion         = [[Hinduism]]  
|relations        = [[Mukesh Ambani]] (Brother)
|website          = {{URL|http://www.relianceadagroup.com/ada/chairman.html|Anil Ambani}} 
|footnotes        = 
}}

谁能指导我如何过滤数据。因为它是一个 NSString。我无法将其转换为字典。如何获取姓名、出生日期、出生地等的值。

4

1 回答 1

0

第一种方法:-
首先从字符串中删除空格和不相关的字符。
然后,以这种方式进行:-

NSArray *testArray = [yourString componentsSeparatedByString:@"|"];
NSString *key = [testArray objectAtIndex:0];
NSArray *values = [testArray subarrayWithRange:NSMakeRange(1, [testArray count] - 1)];
NSDictionary *dict = [NSDictionary dictionaryWithObject:values forKey:key];


您可以轻松获取特定键的值,例如姓名、出生地等。

第二种方法:-

NSError *err = nil;
NSArray *arr = [NSJSONSerialization JSONObjectWithData:[yourString dataUsingEncoding:NSUTF8StringEncoding] options:NSJSONReadingMutableContainers error:&err];


NSMutableDictionary *dict = arr[0];
    for (NSMutableDictionary *dictionary in arr) {
        // do something using dictionary
    }
于 2013-07-24T09:08:00.573 回答