查找字符串上 NSArray 对象的数量
我想计算我的 NSString 的 NSArray 对象。我的 NSArray 有 @"a"
、@"w"
对象,我的字符串是 @"abcdefgw"
。我想知道 @"w"
对象在我的字符串中出现了多少次。
I would like to count my NSArray object of my NSString. My NSArray has @"a"
, @"w"
objects, and my string is @"abcdefgw"
. I would like to know how many times the @"w"
object is there in my string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
- (NSArray *)componentsSeparatedByString:(NSString *)separator
,尽管这可能存在边界问题。您还可以像这样使用 stringByReplacingOccurrencesOfString:withString: :You can use
- (NSArray *)componentsSeparatedByString:(NSString *)separator
, though this may have boundary issues. You can also usestringByReplacingOccurrencesOfString:withString:
like this:如果你想计算子字符串,你将不得不搜索子字符串,然后每次缩小范围......类似的东西。
if you are looking to count substrings you will have to search for substrings then shrink the range each time... something like.