目标C:检查字符串的开头
我必须验证字符串的开头:我的示例字符串是
NSString *string1 = @"Hello World";
then 我必须执行 if,示例:
if (string1 startwith "Hello")
How can I do this in Objective c?
I must verify the beginning of a string: my example string is
NSString *string1 = @"Hello World";
then I must do an if, example:
if (string1 startwith "Hello")
How can I do this in objective c?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
阅读 NSString 类的文档。你会发现各种惊喜。
Read the documentation for the NSString class. You'll find all kinds of surprises.
这样做怎么样:
根据范围,您可以确定该项目出现在字符串中的位置
How about doing it this way:
Based on the range, you can determine where in the string the item occurs