有没有一种简单的方法来以编程方式获取字母表?
我想要一个包含字母表中所有字母的 NSArray/NSMutableArray 。一定有一种快速简单的方法,比把它们全部敲出来更好。以 PHP 为例:
foreach(range('A','Z') as $i) $alphabet[]=$i;
I want an NSArray/NSMutableArray
containing all the letters of the alphabet. There must be a quick and easy way, better than typing them all out. For example in PHP:
foreach(range('A','Z') as $i) $alphabet[]=$i;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
还可以使用为表索引标题生成的数组。它不使用
for
循环并且具有多语言支持。The array generated for table index titles may also be used. It does not use a
for
loop and has multi-language support.没有比把它们全部打印出来更快的方法了,除非你从下面剪切并粘贴我方便的参考!
“abcdefghijklmnopqrstuvwxyz”
为此,这里有一个更长的方法。
There's no quicker way than typing them all out, unless you cut and paste my handy reference from below!
"abcdefghijklmnopqrstuvwxyz"
For the sake of it, here's a longer way.
有时,输入字母是最简单的。这里它们是一个数组:
Sometimes typing the letters out is the easiest. Here they are as an array:
尝试使用以下代码;
try with following code;
您可以使用 for 循环来生成它们,但我认为将它们输入出来更容易。这肯定比在这里发布问题更容易。 ;)
You could use a for-loop to generate them, but I think typing them out is easier. It is most certainly easier than posting a question here. ;)