TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
NSString category divers helpers.
Create slug:
NSString *title = @"My title";
NSLog(@"%@", [title toSlug]); // return my-title
Count number occurences in string:
NSString *title = @"My title";
NSLog(@"%i", [title countOccurencesOfString:@"title"]); // return 1