在我的应用程序中,数据以这样的字符串形式出现
In my App, data comes in String like this
"Hi,Hello,Bye"
我想用,"分隔数据
我该怎么做?
使用 componentsSeparatedByString:
use componentsSeparatedByString:
NSString *str = @"Hi,Hello,Bye";
NSArray *arr = [str componentsSeparatedByString:@","];
NSString *strHi = [arr objectAtIndex:0];
NSString *strHello = [arr objectAtIndex:1];
NSString *strBye = [arr objectAtIndex:2];
这篇关于如何拆分由“,"分隔的字符串中的项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!