Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

JSON html attributes Objective-c

Hi, I'm trying to get my blog posts with json.But I'm getting html attributes like &#8217,&#8221 how can I replace them in objective-c thank you

2 Answers

Check out Michael Waterfall's answer on Stackoverflow and the linked to Github repo.

Long story short: you are basically looking for a way to find and replace character entities from a string. There's no Obj-C built-in method (that I'm aware of), but the Github repo has a pretty robust library. I'd recommend checking out the repo since recreating the functionality from scratch may be error prone (and not catch as many edge cases).

any solution ?