判断NSString的第一个字符是否是数字
我只是想知道如何确定 NSStrings 第一个字符是否是数字。
I just wanted to know how i can determine whether a NSStrings first character is a number.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果
您一次处理多个 NSString(例如循环遍历数组)并且想要检查每个 NSString 的格式(例如前导数字),那么最好包括检查,这样您就不会尝试评估空字符串或不存在的字符串。
例子:
}
In the event you are handling many NSStrings at once (like looping through an array) and you want to check each one for formatting like leading numbers, it's better practice to include checks so that you do not try evaluating an empty or nonexistent string.
Example:
是的。你可以这样做:
Yes. You can do:
我可以想到两种方法来做到这一点。你可以使用
或者你可以使用
I can think of two ways to do it. You could use
Or you could use
检查返回值:
如果返回范围的
location
值为0
,则第一个字符匹配。Check the return value of:
If the
location
value of the returned range is0
, you have a match at the first character.最好不要使用扫描整个字符串的调用,而是取出第一个字符然后查看它是什么:
Rather than using a call that scans the entire string, it is best to pull out the first char then see what it is: