本文介绍了爆炸的目标C版本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果我想通过爆炸在PHP中的部分字符串到一个数组中,我有漂亮的爆炸()函数,我只是做了以下
$ =的myStringHI:有:怎么样;
$字符串数组=爆炸(:,$ myString的);
和我得到
$字符串数组=(
[0] =HI
那里[1] =
[2] =HOW
);
有没有目标C类似的功能是爆炸的字符串到一个数组?感谢您的帮助!
解决方案
的NSArray *字符串数组= [myString的componentsSeparatedByString:@];
If I want to explode a string by parts in PHP into an array, I have the nifty explode() function where I just do the following
$mystring = "HI:THERE:HOW";
$stringarray = explode(":", $mystring);
And I get
$stringarray = (
[0] = "HI"
[1] = "THERE"
[2] = "HOW"
);
Is there a similar function in Objective C that explodes a string into an array? Thanks for any help!
解决方案
NSArray *stringArray = [myString componentsSeparatedByString:@":"];
这篇关于爆炸的目标C版本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!