Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Android 应用程序中工作,使用 hasPrefix 在 iphone 中获取第一个字符串值,但我不知道该怎么做?请帮我
在 iPhone 中:
Name =@"Thomas edward"; if ([result hasPrefix:Thomas]) { }
同样是Android,如何做到这一点?
提前致谢
您可以使用startsWith,或检查字符串的索引
if(result.startsWith("Thomas")) { }