Example. 123456, and we want the third from the right ('4') out.
The idea in practise is to access each digit seperately (ie. 6 5 4 3 2 1).
C/C++/C# preferred.
|
|
A more efficient implementation might be something like this:
This saves the effort of converting all digits to string format if you only want one of them. And, you don't have to allocate space for the converted string. If speed is a concern, you could precalculate an array of powers of 10 and use n to index into this array:
As mentioned by others, this is as close as you are going to get to bitwise operations for base 10. |
|||||
|
|
The reason that it won't work (easily) with bit-wise operations is that the base of the decimal system (10) is not a power of the base of the binary system (2). If you were coding in base 8, you'd have So you really have to convert to base 10, which is usually done by converting to a string (with toString (Java) or sprintf (C), as the others have shown in their replies). |
|||
|
|
|
Use base-10 math:
Produces:
|
|||
|
|
|
This works for unsigned ints up to 451069, as explained here:
Testing it out:
I'd be surprised if it's faster, though. Maybe you should reconsider your problem. |
|||
|
|
|
Just spent time writing this based on answers here, so thought I would share. This is based on Brannon's answer, but lets you get more than one digit at a time. In my case I use it to extract parts from a date and time saved in an int where the digits are in yyyymmddhhnnssm_s format.
I made it an extension, you might not want to, but here is sample usage:
results: year = 2001 month = 6 day = 7 |
|||
|
|
|
You could try a bitwise shift-left (for N-1) and then read the digit at [0], as this could be an assembler approach. 123456 -> 456 -> read first digit |
|||
|
|
|
In C you could do something like the following, where n=0 would indicate the rightmost digit
Change [19-x] to [20-x] if you want n=1 for rightmost digit. |
|||||
|