Split one string into different strings

Viewed 27323

i have the text in a string as shown below

011597464952,01521545545,454545474,454545444|Hello this is were the message is.

Basically i would like each of the numbers in different strings to the message eg

NSString *Number1 = 011597464952 
NSString *Number2 = 01521545545
etc
etc
NSString *Message = Hello this is were the message is.

i would like to have that split out from one string that contains it all

5 Answers
Related