嗨我的字符串为G531 Other Dough Products
。
此处我只想Other Dough Products
,请回复我的代码。
我尝试使用substring
,但这不起作用。
提前致谢。
答案 0 :(得分:2)
您实际上并没有说出您尝试过的内容,只有substringFromIndex:
NSString *str = @"G531 Other Dough Products";
str = [str substringFromIndex:5];
应该这样做。
除非您想要新字符串中的前导空格,否则您可能会发现要使用5。
答案 1 :(得分:0)
NSString* s = [@"G531 Other Dough Products" substringFromIndex:5];
答案 2 :(得分:0)
尝试使用“substringFromIndex”(参见documentation)
答案 3 :(得分:0)
他,你也可以这样做,
NSString * newString = [NSString stringWithCString:(const char*)&"G531 Other Dough Products"[5] encoding:NSUTF8StringEncoding];
NSLog(@"%@", newString);