Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string "hai-welcome".

I need to split the above string using '-' separator:

mySstring = "hai-welcome" Separate as:

firstString = "hai" secondString = "welcome.

share|improve this question

5 Answers

You can accomplish this by using "componentsSeparatedByString" method of NSString.

NSString * source =  @"hai-welcome";
NSArray * stringArray = [source componentsSeparatedByString:@"-"];
NSString * firstPart = [stringArray objectAtIndex:0]; // Contains string "hai"
NSString * secondPart =[stringArray objectAtIndex:1]; //Contans string "welcome"
share|improve this answer

Use NSString's componentsSeparatedByCharactersInSet method

http://www.idev101.com/code/Objective-C/Strings/split.html

share|improve this answer

Try this

NSString *str = @"hai-welcome";
NSArray *listItems = [str componentsSeparatedByString:@"-"];
share|improve this answer
NSArray* foo = [@"hai-welcome" componentsSeparatedByString: @"-"];
NSString* first = [foo objectAtIndex: 0];
NSString* second = [foo objectAtIndex: 1];
share|improve this answer

If you wish to work with other than componentsSeparatedByString function, I would offer this solution to adopt:

NSString *myString =  @"hai-welcome";
NSString *firstString = [myString substringWithRange:NSMakeRange(0, [myString rangeOfString:@"-"].location)];
NSString *secondString = [myString stringByReplacingOccurrencesOfString:[firstString stringByAppendingString:@"-"] withString:@""];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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