gpt4 book ai didi

objective-c - 在IOS xcode程序中搜索Char数组中的字符串?

转载 作者:行者123 更新时间:2023-11-29 04:19:22 29 4
gpt4 key购买 nike

字符信息[256]="Apple,iPhone,iPad";

我想在这个char数组中搜索,例如在上面的数组中搜索“iPhone”,返回 TRUE,因为它包含此字符串。

如何在 iOS xcode 程序中做到这一点?谢谢。

最佳答案

这里是:

BOOL stringInString(char *s1, char *s2)
{
return (strstr(s1, s2) != NULL);
}

关于objective-c - 在IOS xcode程序中搜索Char数组中的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13175003/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com