有没有什么简洁的方法可以在 Objective-C 中对字符串进行切片?到目前为止,我有:
f = [f stringByReplacingCharactersInRange:NSMakeRange(0, 1) withString:@""];
这不如 Python 的好:
f = f[1:]
如果不得不做类似的事情会更加粗糙f[1:4]
:
f = [f stringByReplacingCharactersInRange:NSMakeRange(0, 1) withString:@""];
f = [f stringByPaddingToLength:(4-1) withString:@"" startingAtIndex:0];