如何在 iPhone 中拆分字符串?
AERP|01,KSE;04,NCEL;05,GSE;|<END>
这是我的字符串,现在我想将它分成两个数组,例如
array1 = 01,04,05。 array2 = KSE,NCEL,GSE
并忽略 "AERP|" & “|
注意:我正在目标 c 中工作。
AERP|01,KSE;04,NCEL;05,GSE;|<END>
this is my string now i want to split it in two arrays like
array1 = 01,04,05.
array2 = KSE,NCEL,GSE
and ignore "AERP|" & "|<END>".
Note: I am working in objective c.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
假设
|
,;
,,
是重要性递减的分隔符,我会首先删除开头和结尾,然后分成数字/助记词成对,然后将它们分开。事情会是这样的:Assuming that
|
,;
,,
are separators of decreasing significance, I would first remove the beginning and the end, then separate into number/mnemonic pairs, then separate the pairs. It would go something like this:使用
NSString
componentsSeparatedByCharactersInSet
要构造您自己的
NSCharacterSet
,请使用NSMutableCharacterSet
Use the
NSString
componentsSeparatedByCharactersInSet
To construct your own
NSCharacterSet
useNSMutableCharacterSet
修改数组的名称,因为我是匆忙完成的。
modify the names of the array as I have done it in hurry.