Skip to content

Instantly share code, notes, and snippets.

@taylanpince
Created June 28, 2011 20:43
Show Gist options
  • Save taylanpince/1052154 to your computer and use it in GitHub Desktop.
Save taylanpince/1052154 to your computer and use it in GitHub Desktop.
blogTO Best of Title Shortener
NSString *trimmedTitle = [self.entryTitle stringByReplacingOccurrencesOfString:@"The Best"
withString:@""
options:NSCaseInsensitiveSearch
range:NSMakeRange(0, [self.entryTitle length])];
trimmedTitle = [trimmedTitle stringByReplacingOccurrencesOfString:@"in Toronto"
withString:@""
options:NSCaseInsensitiveSearch
range:NSMakeRange(0, [trimmedTitle length])];
trimmedTitle = [trimmedTitle stringByReplacingOccurrencesOfString:@" , " withString:@", "];
trimmedTitle = [trimmedTitle stringByReplacingOccurrencesOfString:@"of the Newer"
withString:@""
options:NSCaseInsensitiveSearch
range:NSMakeRange(0, [trimmedTitle length])];
trimmedTitle = [trimmedTitle stringByReplacingOccurrencesOfString:@"New"
withString:@""
options:NSCaseInsensitiveSearch
range:NSMakeRange(0, [trimmedTitle length])];
self.shortTitle = [trimmedTitle stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment