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 NSString like this @"0,0,0,0,0,0,1,2012-03-08,2012-03-17". I want values separated by comma. I want values before comma and neglect comma.

I am new in iPhone, I know how to do in Java but not getting how to do in Objective-C.

share|improve this question
That list contains both dates and integers, what do you want the dates formatted as? – Hampus Nilsson May 18 '12 at 8:13

3 Answers

up vote 9 down vote accepted
NSString *string = @"0,0,0,0,0,0,1,2012-03-08,2012-03-17";

NSArray *componentArray = [string componentSeperatedByString:@","];
share|improve this answer

Use the componentsSeparatedByString: method of NSString.

NSString *str = @"0,0,0,0,0,0,1,2012-03-08,2012-03-17";
NSArray *components = [str componentsSeparatedByString:@","];

for (NSString *comp in components)
{
    NSLog(@"%@", comp);
}
share|improve this answer
for (NSString *s in [yourstring componentsSeparatedByString:@","])
{
    int thisval = [s intValue];
}
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.