我正在加入三个字符串,在它们之间“*”被推, 现在我想将它们中的三个(名称,电子邮件,地址)分开,我该怎么做?
答案 0 :(得分:1)
NSArray *components = [string componentsSeparatedByString:@"*"];
有关详细信息,请参阅NSString Class Reference。
答案 1 :(得分:1)
您可以像这样使用componentsSeparatedByString:
NSArray *seperated-strings = [yourstring componentsSeparatedByString:@"*"];
那应该给你一个包含三个字符串的数组。
编辑:哎呀,被殴打......答案 2 :(得分:1)
请注意,*
个字符为allowed within email addresses,因此您应该考虑使用更强大的方法来序列化您的元组。例如JSON