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

How do I convert a string to a float in Objective-C?

I am trying to multiply a couple of strings I am getting back from JSON:

float subTotal = [[[[purchaseOrderItemsJSON objectAtIndex:i] objectAtIndex:j] objectForKey:@"Price"] floatValue];

NSLog(@"%@",subTotal);

This gives me: (null) in the console. I know that there is a valid string coming out of that array because I am already using it to display its value in a label.

share|improve this question

2 Answers

up vote 16 down vote accepted
your_float = [your_string floatValue];

EDIT:

try this:

  NSLog(@"float value is: %f", your_float);
share|improve this answer
float subTotal = [[[[purchaseOrderItemsJSON objectAtIndex:i] objectAtIndex:j] objectForKey:@"Price"] floatValue]; NSLog(@"%@",subTotal); This gives me a (null) on console. I know there is a string value in there. – Slee Jul 8 '10 at 2:42
1  
@Max, Can you try to print that string, and paste it here? – C-x C-t Jul 8 '10 at 4:00
it is: 3399 and the output ends up being: (null) – Slee Jul 8 '10 at 11:43
I am a dope - @"%@", I'll leave it at that – Slee Jul 8 '10 at 16:51
As stated in the documentation, beware that the format is non-localized. In Germany people use a comma as separator, i.e. "1,28" vs. "1.28". floatValue will not work in this case. – vpdn Nov 24 '11 at 12:50

Have you tried Google? Search for "objective-c string to float" results in first entry:

NSString Class Reference - floatValue

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.