Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to determine, where does the period of zero's start to cut the number and I want 5 numbers after the '.'

I use following code:

NSString* result = [[NSString stringWithFormat: @"%.5f", CGFloat] stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString: @"0"]];

when I use it for example with '3.50300000' it gives me '3.503' and that's OK

But when I use the code with '0.50300000' it gives me '.503' when '0.503' is desired.

Is there anyone can help me?

share|improve this question
1  
How is 3.50300 -> 3.503 okay when you "want 5 numbers after the '.'"? That is, what is wrong with the 2nd case? Would 0.503 be okay? Or should the output be 3.50300 and .50300? – user166390 Jan 6 '12 at 21:02
sorry I want max. 5 numbers – user1126444 Jan 6 '12 at 21:04
What does the word "cut" mean in reference to numbers? – Gabe Jan 6 '12 at 21:05
I've flopped on the title a few times. Please add some more test cases of input and desired output. – user166390 Jan 6 '12 at 21:09

4 Answers

up vote 0 down vote accepted
NSString *result = [NSString stringWithFormat:@"%.5f", myFloat];
for (int i = result.length; [result characterAtIndex:i - 1] == '0'; --i)
    ;
result = [result substringToIndex:i];
share|improve this answer
This is awful. Please don't do string formatting like this in your code. A simple string format of @"%06.4f" as @dasblinkenlight suggests is the correct way to, you know, format strings. – Answerbot Oct 10 '12 at 18:24
@Answerbot The asker made it clear that he wants to trim trailing zeros. Your format string doesn't do that. – rob mayoff Oct 10 '12 at 20:38

Try using @"%06.4f" for your format string: 0 - leading zeros, 6 - six characters max, 4 - four digits after the decimal point. Note that 6 represents the five digits that you want plus the decimal point, because it is counted against the total number of characters produced by the format specifier.

EDIT Fixed the format string after reading your comments about 5 numbers total, not 5 numbers after the decimal point.

share|improve this answer

It's %N.Mf, where N is the minimum width of the field and M is the number of decimal places after the ".". If you always want at least one digit (possibly "0") before the decimal point and 3 digits after specify %5.3f.

Note that there's no way, using standard % formatting, to limit the presentation to ONLY 5 digits, such that 12.12345 would print at "12.12", while 1.12345 would print as "1.123".

share|improve this answer

Not the cleanest; but it works.

NSMutableString* newResult = @"0";
NString* result = [[NSString stringWithFormat: @"%.5f", CGFloat] stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@"0"]];
if ([[result componentsSeparatedByString:@"."] count] == 1)
{
    [newResult appendString:result];
}
NSLog(@"%@",newResult);
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.