Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing an application for the iPhone that has inApp-mail sending capabilities. So far so good, but now I want to avoid html-injections as some parts of the mail are user-generated texts.

Basically I search for something like this:

// inits
NSString *sourceString = [NSString stringWithString:@"Hello world! Grüße dich Welt <-- This is in German."];

//                                          -----   THAT'S WHAT I'M LOOKING FOR
// pseudo-code                              |
//                                          V
NSString *htmlEncodedString = [sourceString htmlEncode];

// log
NSLog(@"source string: %@", sourceString);
NSLog(@"encoded string: %@", htmlEncodedString);

Expected output
source string: Hello world! Grüße dich Welt <-- This is in German.
encoded string: Hello world! Gr&#252;&#223;e dich Welt &lt;-- This is in German.

I already googled and looked through several of SO's questions and answers, but all of them seem to be related to URL-encoding and that's not what I really need (I tried stringByAddingPercentEscapesUsingEncoding with no luck - it creates %C3%BC out of an 'ü' that should be an ü).

A code sample would be really great (correcting mine?)...

--
Thanks in advance,
Markus

share|improve this question

6 Answers

up vote 13 down vote accepted

Check out my NSString category for HTML. Here are the methods available:

- (NSString *)stringByConvertingHTMLToPlainText;
- (NSString *)stringByDecodingHTMLEntities;
- (NSString *)stringByEncodingHTMLEntities;
- (NSString *)stringWithNewLinesAsBRs;
- (NSString *)stringByRemovingNewLinesAndWhitespace;
share|improve this answer
Is there a way to make it work with ARC? – Bruce Banner Feb 16 at 7:04

Thanks @all. I ended up using my own implementation:

//
// _________________________________________
//
// textToHtml
// _________________________________________
//
- (NSString*)textToHtml:(NSString*)htmlString {
    htmlString = [htmlString stringByReplacingOccurrencesOfString:@"&"  withString:@"&amp;"];
    htmlString = [htmlString stringByReplacingOccurrencesOfString:@"<"  withString:@"&lt;"];
    htmlString = [htmlString stringByReplacingOccurrencesOfString:@">"  withString:@"&gt;"];
    htmlString = [htmlString stringByReplacingOccurrencesOfString:@"""" withString:@"&quot;"];    
    htmlString = [htmlString stringByReplacingOccurrencesOfString:@"'"  withString:@"&#039;"];
    htmlString = [htmlString stringByReplacingOccurrencesOfString:@"\n" withString:@"<br>"];
    return htmlString;
}
share|improve this answer
2  
just a side note: since you are also replacing \n with <br> that you should name your function differently (textToHtml for example). The name escapeHTML will indicate to other developers that you are just doing escaping (which you are not) and this will eventually cause bugs if someone tries to re-use this function... – Nir Levy Dec 10 '09 at 11:47
Good point. Just updated the code snippet accordingly. Thanks! – Markus Jan 26 '10 at 11:00
Aren't you leaking a bunch of NSStrings there? – Rhythmic Fistman Jan 31 '10 at 17:59
Wait, no, they're all autoreleased: stackoverflow.com/questions/531550/… – Rhythmic Fistman Jan 31 '10 at 18:49

See this dupe: http://stackoverflow.com/questions/659602/objective-c-html-escape-unescape

share|improve this answer
Thanks! (Edit: removed the wrong comment - sorry) – Markus Dec 10 '09 at 11:09

I have been looking for a similar solution and this did the job for me

NSString* value = @"<&>";
const void* keys[1] = {CFSTR("somekey")};
const void* values[1] = {value};    
CFDictionaryRef dicRef =  CFDictionaryCreate(kCFAllocatorDefault, keys, values, 1, nil, nil);    
CFDataRef dataRef = CFPropertyListCreateData(kCFAllocatorDefault, dicRef, kCFPropertyListXMLFormat_v1_0, 0, NULL);    
NSString *str = [[NSString alloc]initWithData:(NSData *)dataRef encoding:NSUTF8StringEncoding];    
NSRange start =[str rangeOfString:@"string>"];
NSRange end =[str rangeOfString:@"</string"];    
NSString *substr = [str substringWithRange:NSMakeRange(start.location+start.length, end.location-(start.location+start.length))];
[str release];
CFRelease(dicRef);
CFRelease(dataRef);    

//Substring is now html entity encoded

I am using some of the features that is used when saving plist files. I hope this helps.

share|improve this answer

Assuming the character encoding of the email supports Unicode - say UTF-8 - could you not just find and replace the occurrences of <, >, and & with &lt, &gt, and &amp;?

share|improve this answer
Thanks for your answer. Basically you are right, but as there is a function to encode URLs (stringByAddingPercentEscapesUsingEncoding) I wondered if there is no similar one for HTML character encoding. I'd find it strange if I was the first one with this kind of problem and even stranger if there wasn't a "right" way of doing this that is other than reinventing the wheel. – Markus Nov 3 '09 at 12:13
No, there's no such built-in function. You could use NSScanner to replace as suggested by teabot; here's an approach that completely strips HTML tags, you could just modify it: sugarmaplesoftware.com/25/strip-html-tags – Pascal Nov 3 '09 at 13:20
Thanks a lot for the answer and the link! – Markus Nov 4 '09 at 10:06

Markus,

In your implementation you should escape the & first.

share|improve this answer
Thanks! Just fixed it :) – Markus Dec 10 '09 at 11:10

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.