When I parse the below xml:
...
<opp_brief> N & S nishu </opp_brief>
...
using the following line code:
TBXMLElement *element10 = [TBXML childElementNamed:@"opp_brief" parentElement:element8];
if (element10 != nil)
{ NSLog(@"TBXMLLLLL::::: %@",[TBXML textForElement:element10]); }
output of NSLog is:
TBXMLLLLL::::: N & S nishu
I dont know from where "amp;" is coming with the &...
Can any one help....