0

Is there a nice way to get the number of decimals of a double variable in Objective-C? I am struggling for a while to find a way but with no success.

For example 231.44232000 should return 5.

Thanks in advance.

CristiC
  • 22,068
  • 12
  • 57
  • 89

2 Answers2

4

You could, in a loop, multiply by 10 until the fractional part (returned by modf()) is really close to zero. The number of iterations'll be the answer you're after. Something like:

int countDigits(double num) {
  int rv = 0;
  const double insignificantDigit = 8;
  double intpart, fracpart;
  fracpart = modf(num, &intpart);
  while ((fabs(fracpart) > 0.000000001f) && (rv < insignificantDigit)) {
    num *= 10;
    rv++;
    fracpart = modf(num, &intpart);
  }

  return rv;
}
Graham Perks
  • 23,007
  • 8
  • 61
  • 83
  • 1
    This is what I needed. But you forgot to put fracpart = modf(num, &intpart); inside the while. – CristiC Nov 28 '11 at 08:21
1

Is there a nice way to get the number of decimals of a double variable in Objective-C?

No. For starters, a double stores a number in binary, so there may not even be an exact binary representation that corresponds to your decimal number. There's also no consideration for the number of significant decimal digits -- if that's important, you'll need to track it separately.

You might want to look into using NSDecimalNumber if you need to store an exact representation of a decimal number. You could create your own subclass and add the ability to store and track significant digits.

Caleb
  • 124,013
  • 19
  • 183
  • 272