gpt4 book ai didi

ios - isEqualToString 没有按预期工作?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:02:02 27 4
gpt4 key购买 nike

好的,我以前做过这个,很简单,但出于某种原因我不明白为什么下面的两个字符串彼此不相等!有任何想法吗?我确信这将是我没有看到的非常容易的事情:

NSString *texture1name = [NSString stringWithFormat:@"world%dΙnGameScrollBackground1", 0];

NSLog(@"IS EQUAL: %d", [@"world0InGameScrollBackground1" isEqualToString:texture1name]);
NSLog(@"This: %@ equal to: %@", texture1name, @"world0InGameScrollBackground1");

当我运行上面的代码时,我得到:

IS EQUAL: 0This: world0ΙnGameScrollBackground1 equal to: world0InGameScrollBackground1

它是完全相同的字符串,没有空格或任何东西!请帮忙,谢谢!

最佳答案

不知何故你得到了希腊字母 iota在您的格式字符串中 @"world%dΙnGameScrollBackground1" 代替大写字母“i”,导致字符串不匹配。只需使用“I”字符重新键入格式字符串,您就可以开始了。或者只是复制粘贴:

[NSString stringWithFormat:@"world%dInGameScrollBackground1", 0];

关于ios - isEqualToString 没有按预期工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23893962/

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