gpt4 book ai didi

python - Objective-C (cocoa) 等价于python的endswith/beginswith

转载 作者:IT老高 更新时间:2023-10-28 11:38:36 26 4
gpt4 key购买 nike

Python 有非常有用的 string.startswith()string.endswith() 函数。我可以使用哪些 NSString 方法来实现相同的功能?

最佳答案

使用 -hasPrefix:-hasSuffix: :

NSString *s = @"foobar";
NSLog(@"%d %d\n", [s hasPrefix:@"foo"], [s hasSuffix:@"bar"]);
// Output: "1 1"

关于python - Objective-C (cocoa) 等价于python的endswith/beginswith,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5201965/

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