SO I am trying to read content of an html string.
[scanner scanUpToString:@"<" intoString:&result];
What is the fastest way to read the content into string but ignore the last character which in this case is "<
". I don't want to do stringByReplacingOccuranceOfString
, that would perform slow