首页 > 代码库 > string字符串转换为array(互换)

string字符串转换为array(互换)

将string字符串转换为array数组

 NSArray  *array = [Str componentsSeparatedByString:@","];

反向方法

将array数组转换为string字符串

 NSString *tempString = [mutableArray componentsJoinedByString:@","];--分隔符

本文出自 “ZhuoKing” 博客,请务必保留此出处http://9951038.blog.51cto.com/9941038/1873187

string字符串转换为array(互换)