目标C:检查字符串的开头

发布于 2024-11-01 10:12:34 字数 216 浏览 3 评论 0原文

我必须验证字符串的开头:我的示例字符串是

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

执妄 2024-11-08 10:12:34
if ([string1 hasPrefix:@"Hello"])
if ([string1 hasPrefix:@"Hello"])
终遇你 2024-11-08 10:12:34

阅读 NSString 类的文档。你会发现各种惊喜。

Read the documentation for the NSString class. You'll find all kinds of surprises.

雨后彩虹 2024-11-08 10:12:34

这样做怎么样:

NSRange aRange = [myString rangeOfString:@"Hello"];
if (aRange.location ==NSNotFound) {
  NSLog(@"string not found");
} else {
  NSLog(@"string was at index %d ",aRange.location);
}

根据范围,您可以确定该项目出现在字符串中的位置

How about doing it this way:

NSRange aRange = [myString rangeOfString:@"Hello"];
if (aRange.location ==NSNotFound) {
  NSLog(@"string not found");
} else {
  NSLog(@"string was at index %d ",aRange.location);
}

Based on the range, you can determine where in the string the item occurs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文