测试已测试 | ✓ |
语言语言 | Obj-CObjective C |
许可证 | MIT |
发布日期最后发布日期 | 2015年4月 |
由Elvis Nuñez,Christoffer Winterkvist维护。
从NSString中提取所有或仅唯一单词的一种非常简单的方法
NSString *string = @"first_name last_name";
NSSet *uniqueWords = [string hyp_uniqueWords];
将产生
uniqueWords: {(
"first_name",
"last_name"
)}
NSString *string = @"first_name last_name last_name";
NSArray *words = [string hyp_words];
将产生
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创建了此库。我们是一家热衷于优秀代码的数字传播机构,如果您正在使用此库,我们可能想雇佣您。
NSString-HYPWordExtractor可以在MIT许可证下获得。有关更多信息,请参阅LICENSE文件。