Possible Duplicate:
How to convert Unicode strings (\u00e2, etc) into NSString for display?
I am downloading web pages into a NSString.
After downloading, it turns out to be that many chars in some web pages look like these:
**\u003c**div style\u003d\"float:left;padding-right:10px\"\u003e\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\u003cdiv\u003e\u003ca title\u003d\"Click here to read Penn State NCAA Sanctions: Four-Year Bowl Ban, Vacated Wins, $60 Million Fine, Significant Scholarship Reductions\"
I wish to use regex <img[^>]*>
to parse all images out, but with these \u****
thing, I can't do that.
Is there a way to pre-transforming all those \u****
thing into readable chars like <
?
Thanks