objective-c – 在NSArray中查找最长的字符串

栏目: Objective-C · 发布时间: 6年前

内容简介:翻译自:https://stackoverflow.com/questions/17815813/finding-the-longest-string-within-an-nsarray

我有一个充满200,000字的NSArray,我不知道每个单词的长度.

我需要知道该数组中包含的单词的最大长度是多少.

例如,如果我的数组是{“dog”,“person”,“amazing”}

此数组中包含的单词的最大长度为7(“惊人”)

我该怎么办?

除了暗示遍历数组的所有方法之外,您可以使用@max集合运算符使用valueForKeyPath:轻松执行此操作:
NSNumber* maxLength= [array valueForKeyPath: @"@max.length"];

翻译自:https://stackoverflow.com/questions/17815813/finding-the-longest-string-within-an-nsarray


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Computational Advertising

Computational Advertising

by Kushal Dave、Vasudeva Varma / Now Publishers Inc / 2014

Computational Advertising (CA), popularly known as online advertising or Web advertising, refers to finding the most relevant ads matching a particular context on the Web. The context depends on the t......一起来看看 《Computational Advertising》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

URL 编码/解码
URL 编码/解码

URL 编码/解码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具