I received an nsstring from the server. Now I want to split it into the substring I need. How to split the string?

For example:

substring1:read from the second character to 5th character

substring2:read 10 characters from the 6th character.

link|improve this question

feedback

2 Answers

up vote 49 down vote accepted

You can also split a string by a substring, using NString's componentsSeparatedByString method.

Example from documentation:

NSString *list = @"Norman, Stanley, Fletcher";
NSArray *listItems = [list componentsSeparatedByString:@", "];
link|improve this answer
Can I split strings whose separate marks are different? e.g. @"A,B^C~D" – iPhoney Feb 27 '09 at 9:53
2  
You should be able to use NSString's "componentsSeparatedByCharactersInSet:" to split on multiple characters. – codelogic Feb 27 '09 at 10:02
Great Work man..! thanks – Adil Soomro Mar 16 '11 at 5:30
hello I successfully separate string but i want to set that separated in UILabel any idea? – Nikunj R. Jadav Aug 17 '11 at 12:06
Iterate through your array: for (int i = 0; i < [listItems count]; i++) and use [listItems objectAtIndex:i]; – Domness Aug 20 '11 at 8:58
feedback

NSString has a few methods for this:

[myString substringToIndex:index];
[myString substringFromIndex:index];
[myString substringWithRange:range];

Check the documentation for NSString for more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.