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

I'm converting a long string representing a very big or small number to a string in scientific notation. E.g. 9999999999999999999999999 to 9.999999999999999E24.

I use NSNumberFormatter.

NSNumberFormatter *ns = [[NSNumberFormatter alloc] init];
[ns setNumberStyle: NSNumberFormatterScientificStyle];
NSString *result = [ns stringFromNumber: [ns numberFromString: aBigOrSmallString]];
[ns release];

But how can I control the precision part? For example, from 912345678 to 9.12E8 or 9.1234E8.

share|improve this question

1 Answer

up vote 2 down vote accepted

Have you checked the setMinimumFractionDigits and setMaximumFractionDigits
Reference: NSNumberFormatter Class Reference

share|improve this answer
It works. Strange. I should've tried it before. Thanks. – yehnan Feb 7 '10 at 4:34

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.