TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Apr 2015 |
Maintained by Elvis Nuñez, Christoffer Winterkvist.
A super easy way of extracting all or only unique words from an NSString
NSString *string = @"first_name last_name";
NSSet *uniqueWords = [string hyp_uniqueWords];
Would produce
uniqueWords: {(
"first_name",
"last_name"
)}
NSString *string = @"first_name last_name last_name";
NSArray *words = [string hyp_words];
Would produce
words: (
"first_name",
"last_name",
"last_name"
)
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Hyper made this. We're a digital communications agency with a passion for good code, and if you're using this library we probably want to hire you.
NSString-HYPWordExtractor is available under the MIT license. See the LICENSE file for more info.