vote up 14 vote down star
9

I was trying to convert a string containing only base 10 digits (e.g. "124890") to an array of corresponding integers (for given example: [1, 2, 4, 8, 9, 0]), in Ruby.

I'm curious about how easily this can be accomplished in Ruby and in other languages.

flag
show 5 more comments

61 Answers

1 2 3 next
vote up 3 vote down check

In Ruby 1.9, or on 1.8 if you are in Rails/have the symbol_to_proc gem, it becomes

"124890".split('').map(&:to_i) #=> [1, 2, 4, 8, 9, 0]
link|flag
vote up 1 vote down

C# & VB.net using linq...

var result = "123456789".ToCharArray().Select(
        c => int.Parse(c.ToString())).ToArray();

or

Dim result = "123456789".ToCharArray().Select(
        Function(c) Integer.Parse(c.ToString())).ToArray()
link|flag
vote up 0 vote down

IA32

Using the same assumptions about the input that DocMax made, the code can be reduced to:

    mov esi,source
    mov edi,dest
l1:
    movzx eax,byte ptr [esi]
    inc esi
    sub al,'0'
    jc done
    stosd
    jmp l1
done:

which is 17 bytes.

Skizz

link|flag
vote up 0 vote down

Another one In c#

    string str = "124890";            
    var res = str.ToCharArray().Select(x => Convert.ToInt32(((char)x).ToString())).ToArray();

Cheers

Ramesh Vel

link|flag
vote up 0 vote down

ActionScript 3.0:

var string:String = "01234";
var array:Vector.<int> = new Vector.<int>()
var i:int = 0;
while (i < string.length)
{
    array.push(string.slice(i, ++i));
}
link|flag
vote up 1 vote down

Bash:

s="124890"
for i in $(seq 0 1 $((${#s}-1)))
do
   arr[$i]=${s:$i:1}
done
link|flag
vote up 0 vote down

Common Lisp (string holding the string of digit characters):

(map 'vector #'digit-char-p string)
link|flag
vote up 1 vote down

4 characters in J:

"."0

i.e.

   "."0 '0123874'
0 1 2 3 8 7 4

J will never get points for readability, however.

link|flag
vote up 0 vote down

Several ways to do it in FORTRAN. One of the easiest to understand is EQUIVALENCE.

INTEGER * 4 strTest(20) ! This is the string as an array of 4 byte integers
BYTE bTest(80) ! This is an array of bytes
EQUIVALENCE (strTest(1), bTest(1))

All character strings in FORTRAN may be represented as an array of values. The easiest ones to deal with are INTEGER*2, INTEGER*4 AND LOGICAL*1. Almost all of the FORTRAN compilers will deal with all of these. There are some exceptions for the LOGICAL. The code displayed is for a DEC machine. This code will work on everything from the PDP machines to the DEC Alpha. BYTE is a DEC specific data type. LOGICAL*1 will work on most machines, with the notable exception being IBM since it's not byte addressable.

link|flag
vote up 3 vote down

PowerShell:

"0123456789".ToCharArray() | %{$_-48}

As with other examples, 48 is the character code for '0'.

Type coercion is your friend.

link|flag
vote up 1 vote down

Mathematica:

ToCharacterCode["01234"] - 48

(48 is the character code for "0")

This works because ToCharacterCode returns a list of the character codes for each character in the string and then subtracting a number from a list subtracts the number from each element of the list.

link|flag
vote up 0 vote down

Smalltalk is still alive ;-)

'124890' asArray collect:[:c | c digitValue]

alternative:

'124890' asArray map:#digitValue
link|flag
vote up 0 vote down

I'll bite...

Here it is in Scala:

digits.map(_.toInt)

And the concurrent form using Debasish's pmap implementation plus a little implicit conversion magic:

digits.pmap(_.toInt)
link|flag
vote up 8 vote down

Do you really need such high-falutin' tools for such a simple task?

Commodore-64's BASIC.

10 REM CONVERT STRING, S$, INTO ARRAY OF INTEGERS, A%
20 S$ = "02489"
30 L = LEN(S$)
40 DIM A%(L)
50 FOR X = 1 TO L
60 A%(X) = INT(MID$(S$, X, 1))
70 NEXT X

Untested and from memory.

(Stack Overflow's Syntax Highlighting doesn't have a C-64 BASIC mode? For shame!)

link|flag
show 3 more comments
vote up 1 vote down

I bet I can multi-thread mine in less lines than your language does....

Here's Konrad Rudolph's original:

var nums = str.Select(c => (int)(c - '0'));

And here it is taking advantage of all cores:

var nums = str.AsParallel().Select(c => (int)(c - '0'));

pwned.

:)

link|flag
vote up 7 vote down

In Perl, assuming valid input in $str:

@digits = split //, $str;

This works because Perl, like PHP, unifies string and numeric representation.

link|flag
show 1 more comment
vote up 0 vote down

In Scheme:

(map (compose string->number string) (string->list "12345"))
link|flag
vote up 0 vote down

Yeah I think Ruby's is pretty:

'124890'.scan(/\d/).map(&:to_i)

link|flag
vote up 1 vote down

In Clojure:

(map #(new Integer (str %1)) "124890")

Oh, and while we're at it, twk asked for a multi-threaded version above. Here's one:

(pmap #(new Integer (str %1)) "124890")
link|flag
vote up 0 vote down

In idiomatic REBOL it's

nums: copy []
forall c "124890" [
    append nums to-integer to-string c
]

However, one can easily create a map function in REBOL and use it for this purpose:

map: func [f [any-function!] s [series!] /local result] [
    result: copy []
    forall s [
        append/only result f first s
    ]
    result
] 

map func [c] [to-integer to-string c] "124890"

I have to admit that this is not one of REBOL's strong points, although more advanced Rebollers than I may know an even more succinct way.

link|flag
vote up 0 vote down

In Erlang (since strings are lists of integers) you only need to go from ASCII-value to integer value by subtracting the ASCII value of '0'. In its shortest form:

lists:map( fun(X) -> X-$0 end, "1234").

If you want a check for validity preventing conversion of non-base-10 characters and make it convenient to use:

 Convert = fun(L) -> lists:map( fun(X) when is_integer(X), X>=$0, X=<$9 -> X-$0 end, L) end.

Use as:

74> Convert("10823472").
[1,0,8,2,3,4,7,2]

Now for something invalid:

75> Convert("aap").

=ERROR REPORT==== 8-Oct-2008::12:12:36 ===
Error in process  with exit value: {function_clause,[{erl_eval,'-inside-a-shell-fun-',"a"},{erl_eval,expr,3}]}

** exited: {function_clause,[{erl_eval,'-inside-a-shell-fun-',"a"},
                             {erl_eval,expr,3}]} **

(if it fails, it fails big ;))

link|flag
vote up 4 vote down

Two versions in JavaScript:

myString.split("").map(Number)

A second version which is more concise when you amortise it over the entire length of your code base:

// During initialisation of your app
String.prototype.map = Array.prototype.map
...
// Later
myString.map(Number)
link|flag
show 2 more comments
vote up 0 vote down

In Oz:

{Browse {Map "123456789" fun{$ X} X - &0 end}}
link|flag
vote up 0 vote down

In Icon:


    a:=[]
    every put(a,integer(!s))
    return a
link|flag
vote up 0 vote down

In XQuery:

for $c in string-to-codepoints("124890")
return xs:integer(codepoints-to-string($c))
link|flag
vote up 0 vote down

Scheme:

(map 
  (lambda (c) 
    (- (char->integer c) (char->integer #\0))) 
  (string->list "12345"))
link|flag
vote up 0 vote down

In Groovy:

"12345678".collect{it.toInteger()}
link|flag
vote up 0 vote down

JavaScript 1.6:

str.split("").map(function (d) { return parseInt(d); })

Update:

Or more concisely:

str.split("").map(Number)
link|flag
vote up 3 vote down

Fast C implementation that does in-place replacement (since char is both a character and a number (byte)):

void toNumbers(char *digits) {
    int len = strlen(digits);
    char *end = digits + len;
    char *next;

    // Process 4 characters at a time
    while ((next = digits + 4) <= end) {
    	*((long *)digits) -= 0x30303030;
    	digits = next;
    }

    // Handle remaining characters
    switch (len & 3) {
    case 3:
    	*((short *)digits) -= 0x3030;
    	digits += 2;
    case 1:
    	*digits -= 0x30;
    	break;
    case 2:
    	*((short *)digits) -= 0x3030;
    }
}
link|flag
vote up 1 vote down

Groovy:

def s = '124890'
def list = []

s.each{ list << Integer.parseInt(it) }
link|flag
show 2 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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