没有从xml解析中获取正确的字符串

时间:2014-02-22 06:40:02

标签: objective-c string xml-parsing

我正在解析一个xml,其中包含标签之间的数据,如“S |nºconta|”。我将其保存如下

-(void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {     
foundText = (NSMutableString *)[string stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
}

foundTextNSString的位置。但我没有得到完整的数据“S |nºconta|”相反,我只是“nºconta|”其中“S |”字符被删除。

这是xmlversion:“”。 S |nºconta|。 “详细信息”是标签名称。无论何时遇到“详细信息”,我都会将其带到上面给出的NSMutableString * foundText,并在遇到S |nºconta|时将其添加回NSMutableArray.But。 foundText只有“nºconta|”离开“| S”

0 个答案:

没有答案