ios – 来自NSString的子串

前端之家收集整理的这篇文章主要介绍了ios – 来自NSString的子串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用NSString,我想得到一个包含字符串前20个字符的子字符串.我怎样才能做到这一点?

解决方法

你可以使用substringToIndex.
NSString *mystring = @"This is a test message having more than 20 characters";
NSString *newString = [mystring substringToIndex:20];
NSLog(@"%@",newString);
原文链接:https://www.f2er.com/iOS/336917.html

猜你在找的iOS相关文章