vote up 4 vote down star

say i have

var i = 987654321;

Is there an easy way to get an array of the digits, the equivalent of:

var is = new int[] { 9, 8, 7, 6, 5, 4, 3, 2, 1 };

without .ToString()ing and iterating over the chars with int.Parse(x)?

flag

45% accept rate
2  
Out of curiosity: What would that be good for? – Tomalak May 6 at 11:59
1  
Absolutely nothing. Ho ha WAR! – Garry Shutler May 6 at 12:06
Why "without iterating over the chars"? – Kamarey May 6 at 12:07
beat me to it, hehe – Andrew Bullock May 6 at 12:07
1  
@Tomalak calculating check digits is my current application – Andrew Bullock May 6 at 12:20
show 2 more comments

6 Answers

vote up 16 vote down check
public Stack<int> NumbersIn(int value)
{
    if (value == 0) return new Stack<int>();

    var numbers = NumbersIn(value / 10);

    numbers.Push(value % 10);

    return numbers;
}

var numbers = NumbersIn(987654321).ToArray();

Alternative without recursion:

public int[] NumbersIn(int value)
{
    var numbers = new Stack<int>();

    for(; value > 0; value /= 10)
        numbers.Push(value % 10);

    return numbers.ToArray();
}
link|flag
Convert the list to an Array by adding .ToArray() – Scoregraphic May 6 at 11:44
I was just doing that as you commented :) – Garry Shutler May 6 at 11:45
Personal preference of using the for loop rather than a do-while in case anyone wonders. – Garry Shutler May 6 at 12:09
If this was in a tight loop (which it sounds like it isn't) you could skip the use of a list in the second version and determine the array size with logarithms. – Ant May 6 at 12:26
care to elaborate @Ant? – Andrew Bullock May 6 at 12:51
show 2 more comments
vote up 4 vote down

I know there has been an accepted answer, and probably better ones than this, but here is another version:

Using yield return, returning the digits in ascending order (according to weight, or whatever it is called)

    public static IEnumerable<int> Digits(this int number)
    {
        do
        {
            yield return number%10;
            number /= 10;
        } while (number > 0);
    }

12345 => 5, 4, 3, 2, 1

link|flag
i always like a nice yield example, have +1 – Andrew Bullock May 6 at 15:05
me too, that's why I couldn't resist! – Svish May 6 at 18:59
vote up 0 vote down

This does convert to string and iterate over the characters, but it does it sort of automatically and in a one-liner:

var i = 987654321;
var is = i.ToString().Cast<int>().ToArray();
link|flag
This doesn't work. First, you will get an InvalidCastException. Second, int x = (int)'1'; does not yield the value 1, but the Unicode value for the character '1' which is 49. – Peter Lillevold May 6 at 13:05
AND you cannot use "is" as a variable name ;) – Peter Lillevold May 6 at 13:05
vote up 4 vote down

Another alternative which don't uses recursion and uses a Stack that avoids reallocation on every insert (at least for the first 32 digits):

var list = new Stack<int>(32);
var remainder = 123456;
do
{
    list.Push(remainder % 10);
    remainder /= 10;
} while (remainder != 0);

return list.ToArray();

And yes, this method also works for 0 and negative numbers.

Interestingly, give this algorithm a negative number -123456 and you will get {-1, -2, -3, -4, -5, -6}

Update: switched from using List to Stack since this automatically gives the correct order.

link|flag
Thanks for the ... reminder, @Tomalak – Peter Lillevold May 6 at 12:04
Deleted it already. +1 anyway. – Tomalak May 6 at 12:05
vote up 4 vote down
var x = new Stack<int>();
do
{
    x.Push(i % 10);
    i /= 10;
} while (i > 0);
return x.ToArray();
link|flag
1  
cough into an array of ints cough – Andrew Bullock May 6 at 11:50
Thanks. Updated it to look slightly less foolish :-) – marklam May 6 at 11:54
vote up 2 vote down

In short: use loop which divide number modulo 10 (%) to get reminder (each digit) and put it into array.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.