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 JSON feed connected to my app. One of the items is lat & long separated by a comma. For example: "32.0235, 1.345".

I'm trying to split this up into two separate values by splitting at the comma.

Any advice? Thanks!!

share|improve this question

4 Answers

up vote 25 down vote accepted
NSArray *strings = [coords componentsSeparatedByString:@","];
share|improve this answer
Woo! Thanks so much! – Adam Storr Jun 22 '11 at 17:06
thank for your effort – iOS Developer Jan 7 at 13:29
NSString* myString = @"32.0235, 1.345".
NSArray* myArray = [myString  componentsSeparatedByString:@","];

NSString* firstString = [myArray objectAtIndex:0];
NSString* secondString = [myArray objectAtIndex:1];

See in documentation

share|improve this answer

You want:

- (NSArray *)componentsSeparatedByString:(NSString *)separator

using @"," as separator.

share|improve this answer

Try [yourCommaSeparatedString componentsSeparatedByString:@", "]
that will give a NSArray with strings you can then call floatValue on ;)

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.