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'm trying to feed Mail.app some simple html: lists, bold font, some italics. However, I noticed that if I use characters like £, then Mail.app just doesn't show anything. I realized I need to convert to HTML entities, like £ (full list here: http://www.w3schools.com/tags/ref_entities.asp). I have a partial solution that works for most characters my users have come up with, but it's far from being a solid fix:

- (NSString*) makeValidHTML:(NSString*)str {
  str = [str stringByReplacingOccurrencesOfString:@"£" withString:@"£"];
  str = [str stringByReplacingOccurrencesOfString:@"¢" withString:@"¢"];
  str = [str stringByReplacingOccurrencesOfString:@"¥" withString:@"¥"];
  str = [str stringByReplacingOccurrencesOfString:@"©" withString:@"©"];
  str = [str stringByReplacingOccurrencesOfString:@"®" withString:@"®"];
  str = [str stringByReplacingOccurrencesOfString:@"°" withString:@"°"];
  str = [str stringByReplacingOccurrencesOfString:@"¿" withString:@"¿"];
  str = [str stringByReplacingOccurrencesOfString:@"¡" withString:@"¡"];
  str = [str stringByReplacingOccurrencesOfString:@"‘" withString:@"'"];
  str = [str stringByReplacingOccurrencesOfString:@"'" withString:@"'"];
  str = [str stringByReplacingOccurrencesOfString:@"&" withString:@"&"];
  str = [str stringByReplacingOccurrencesOfString:@"\"" withString:@"""];
  str = [str stringByReplacingOccurrencesOfString:@"“" withString:@"""];
  str = [str stringByReplacingOccurrencesOfString:@"<" withString:@"&lt;"];
  str = [str stringByReplacingOccurrencesOfString:@">" withString:@"&gt;"];
  return str;
}

Is there a standard way to do this without having to list every possible reserved character?

share|improve this question

2 Answers

up vote 4 down vote accepted

This class should be helpful to you:
https://github.com/mwaterfall/MWFeedParser/blob/master/Classes/NSString+HTML.m

Link retrieved from this other SO answer:
Converting &amp; to & in Objective-C

share|improve this answer
Thanks, this did it! – Riviera Sep 7 '11 at 18:23

I think your main problem is that you're not encoding and declaring your HTML page as UTF-8. While some of the entities you mention are a genuine issue and need to be converted, such as > to &gt; (the code @Joel Martinez linked to will help there), things like the £ symbol will work just fine as they are, provided the page is declared and encoded to be a unicode format such as UTF-8:

<meta http-equiv="content-type" content="text/html; charset=utf-8" />

share|improve this answer
Tried this and it didn't make any difference, but thanks for the suggestion. – Riviera Sep 7 '11 at 18:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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