我使用NSString,我想得到一个包含字符串前20个字符的子字符串.我怎样才能做到这一点?
解决方法
你可以使用substringToIndex.
NSString *mystring = @"This is a test message having more than 20 characters"; NSString *newString = [mystring substringToIndex:20]; NSLog(@"%@",newString);