gpt4 book ai didi

objective-c - Objective-C 中的字符串解析

转载 作者:行者123 更新时间:2023-12-04 02:45:00 26 4
gpt4 key购买 nike

当我有pf:/Abc/def/时,如何获取/Abc/def/

有了Python,我就可以使用

string = 'pf:/Abc/def/'
string.split(':')[1]

甚至

string[3:]

Objective-C 中的等效函数是什么?

最佳答案

NSString *string = [NSString stringWithFormat:@"pf:/Abc/def/"];
NSArray *components = [string componentsSeparatedByString: @":"];
NSString *string2 = (NSString*) [components objectAtIndex:1];

引用:http://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/Reference/NSString.html#//apple_ref/occ/instm/NSString/componentsSeparatedByString :

componentsSeparatedByString 将返回一个 NSArray。您在某个索引处获取对象,并在将其存储到另一个变量时将其类型转换为 NSString。

关于objective-c - Objective-C 中的字符串解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5048758/

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