Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have am parsing some data from rss but some of that data is being parsed partially so tried to append string but it is not working here is some code:

-(id)loadXmlByURL:(NSString *)url{
titles = [[NSMutableArray alloc]init];


NSURL *URL = [NSURL URLWithString:url];
parser = [[NSXMLParser alloc]initWithContentsOfURL:URL];
parser.delegate = self;

[parser parse];

return self;
}


-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *) elementName namespaceURI:  (NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *) attributeDict{
 if ([elementName isEqualToString:@"item"])


{
currentTitle = [Titles alloc];
titles = [[NSMutableArray alloc]init];

}

}

 -(void)parser:(NSXMLParser *) parser didEndElement:(NSString *)elementName
   namespaceURI: (NSString *) namespaceURI qualifiedName:(NSString *) qName


 {
if ([elementName isEqualToString:@"title"]) {
     currentTitle.title = currentNodeContent;
     NSLog(@"%@",currentNodeContent);

 }

}

-(void)parser:(NSXMLParser *)parser foundCharacters:(NSMutableString *)string{


 NSMutableString *st = [string mutableCopy];
 if (!currentNodeContent) {
     // init the ad hoc string with the value     
     currentNodeContent = [[NSMutableString alloc] initWithString:string];
 } else {
     // append value to the ad hoc string    

     [currentNodeContent appendString:string
      ];
 }
     currentNodeContent = [[st stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]mutableCopy];

 }
share|improve this question
1  
What do you mean "it is not working"? Post some sample input. Post some sample output. Post error messages. – CanSpice Jul 26 '11 at 23:23
so for example data is "This is a test" the out put will be just " – Tushar Chutani Jul 26 '11 at 23:53
but no error message – Tushar Chutani Jul 26 '11 at 23:57

closed as too localized by Tim Post Mar 29 '12 at 12:42

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 0 down vote accepted

If I am reading your code correctly then the line

 currentNodeContent = [[st stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]mutableCopy];

will always overwrite the work you are doing in the if (!currentNodeContent) { line.

so your code may be parsing the string correctly, but regardless, it always overrwites with the trimmed string.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.