有没有更好的方法来删除 Objective C 中的停用词?
我现在正在做的方法是将字符串分解为 NSSet 中的单词数组并减去停用词集。有更有效的方法吗?
The method I am doing right now is breaking the string into array of words in NSSet and minus the set of stopwords. Is there a more efficient way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NSRegularExpression 是你的朋友。
NSRegularExpression is your friend.
一个好的正则表达式库可能会做得更快。
A good regex library might do it faster.