Here is the Cocoa+NSString solution (working + tested). You'll see that the only real trick when you use a custom parser like this, is how to find the "end" point. Indeed, you can't just go up to "" as other divs are opened in the middle, so your parser would stop before the end of what you're looking for. I clearly don't say there aren't other ways of doing this, with much more complex XML parsers. But web pages aren't so easy to parse, their code isn't always perfect...and this is simple and working (still you should consider an other way of getting the URL content than stringWithContentsOfURL: which isn't asynchronous):
NSString *originalString = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.makepartsfast.com/2012/09/4337/more-3d-printing-in-metals-ex-one-introduces-the-m-flex-3d-printing-system/"] encoding:NSUTF8StringEncoding error:nil];
NSScanner *scanner = [NSScanner scannerWithString:originalString];
NSString *extractedString = nil;
[scanner scanUpToString:@"<div id=\"content\">" intoString:nil];
[scanner scanString:@"<div id=\"content\">" intoString:nil];
[scanner scanUpToString:@"<div style=\"clear:both;\">" intoString:&extractedString];
if (extractedString)
{
// string was extracted
NSLog(@"%@", extractedString);
}