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?
3.50300->3.503okay when you "want 5 numbers after the '.'"? That is, what is wrong with the 2nd case? Would0.503be okay? Or should the output be3.50300and.50300? – user166390 Jan 6 '12 at 21:02