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 48 vote down

Python:

[int(c) for c in s]

or

map(int, s)

Note: In Python 3 (and later), the list-like object returned by map() is not subscriptable. If you need this capability, just convert it to a list/tuple using list(map()) or tuple(map()).

link|flag
2  
definitely the most readable solution given. – Jeremy Michael Cantrell Oct 3 '08 at 13:54
1  
[for c in s -> int(c)] // in F# - both F# and Python are inspired by the same idea in Haskell, so that's probably not a surprise. – Tomas Petricek Feb 17 at 22:05
1  
Python is good for brevity, but my upvote is for the readability. – FarmBoy Sep 29 at 10:09
show 3 more comments
vote up 11 vote down

C#:

Linq really makes this task easy and Will's version can even be cut further.

from c in str select (int)(c - '0');

Or, using the extension style:

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

Or multithread it (I'll bet this is less code than any other language):

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

KISS!

link|flag
1  
@Lucas: not really. Most (interesting) examples shown here don't return an actual array but rather any array-like structure. And this is a good thing because we code to an interface, not an implementation, right? – Konrad Rudolph Oct 6 '08 at 15:22
show 5 more comments
vote up 11 vote down

In Haskell, it's pretty complex:

map digitToInt
link|flag
show 6 more comments
vote up 10 vote down

In C I wouldn't bother. :-) The "string" is already an "array" of characters, so you can iterate and manipulate it like any other array. To get the int value of a single character, just subtract '0' from the char value:

const char *myString = "12345";
int i;
for (i = 0; myString[i] != '\0'; i++) {
  int myIntVal = myString[i] - '0';
  printf("Integer: %d\n", myIntVal);
}
link|flag
show 6 more comments
vote up 10 vote down

In Ruby:

 s.scan(/\d/).map { |c| c.to_i }
link|flag
vote up 9 vote down

In x86 assembly, if we have a null-terminated input and a correctly-sized, pre-allocated output, we can do:

	xor eax,eax
	mov esi,dword ptr [source]
	mov edi,dword ptr [dest]
_loop:
	mov al,[esi]
	test eax,0
	jz _done
	add esi,1
	and al,0fh
	mov [edi],eax
	add edi,4
	jmp _loop
_done:

Sure it is a lot of lines, but the whole thing is 29 bytes, so that is pretty small.

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 7 vote down

Aaah, the sweetness of Linq. Compared to the other .NET implementations, you can see why I love it so...

int[] foo = (from x in "1234567890" select int.Parse(x.ToString())).ToArray();

For S&G's here's the fluent-style extension method version of this:

"1234567890"
    .ToCharArray()
    .Select(x => int.Parse(x.ToString()))
    .ToArray();
link|flag
show 2 more comments
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 6 vote down

Here's my tentative in Ruby :

"124890".split(//).map {|chr| chr.to_i}
=> [1, 2, 4, 8, 9, 0]

This splits the string using a regex that matches a zero-length string so each character is an element of the array, them maps each (one-character string) element is converted to its integer value.

link|flag
vote up 6 vote down

PHP: $string = preg_split("//", "1234567890");

That should work. Although I'm not sure if you need the regex delimiters for an empty string in preg_split. I do know that explode will NOT work as if you try to explode on the empty string, explode() returns false.

link|flag
1  
Because Mr Wiseass has judged that his solution was better. I think there is a conflict of interest when he can vote down answers in a question he's answered himself. – Gilles Oct 3 '08 at 13:50
show 2 more comments
vote up 6 vote down
<?php
    $array = str_split("124890");
?>

It's hard to beat a built-in method :)

link|flag
show 6 more comments
vote up 5 vote down

Lisp:

(loop for i across "12345" collect (digit-char-p i))
link|flag
vote up 5 vote down

Here's a C++ version.

std::vector<int> result;
for (const char *digit = "124890";  *digit;  ++digit)
    result.push_back(*digit - '0');
link|flag
show 7 more comments
vote up 5 vote down

In Tcl:

% split "124890" ""
1 2 4 8 9 0
link|flag
show 1 more comment
vote up 4 vote down

In Delphi:

type
  TIntArray = array of Integer;

function ConvertStringToIntArray(const aString: String): TIntArray;
var i: Integer;
begin
  SetLength(Result, Length(aString));
  for i := 1 to Length(aString) do
    Result[i-1] := ord(aString[i]) -48;
end;
link|flag
show 2 more comments
vote up 4 vote down

F#

"123456789" |> Seq.map (string >> int)
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 3 vote down

In Java:

String s = "12345";
int[] nums = new int[s.length()];
for(int i = 0; i < nums.length; i++)
  nums[i] = s.charAt(i) - '0';
link|flag
show 1 more comment
vote up 3 vote down

Here's another C++ version in a more modern style. I'm not sure it's an improvement.

int ConvertDigit(char ch)
{
    return ch - '0';
}

std::string digits("124890");
std::vector<int> result;
result.resize(digits.size());
std::transform(digits.begin(), digits.end(), result.begin(), ConvertDigit);
link|flag
vote up 3 vote down

Ruby:

"123".bytes.collect { |d| d - "0"[0] }

C++, works for std::string and null terminated strings:

#include <vector>
#include <boost/foreach.hpp>

template<typename T>
std::vector<int> doit(const T& s) 
{
    std::vector<int> retval;
    BOOST_FOREACH (char c, s) retval.push_back(c - '0');
    return retval;
}
link|flag
show 2 more comments
vote up 3 vote down

Here's a Standard ML version using function composition (with output from SML/NJ):

- val digitsToString = (map (valOf o Int.fromString o Char.toString)) o explode;
val digitsToString = fn : string -> int list
- digitsToString "124890";
val it = [1,2,4,8,9,0] : int list

How does it work? The types tell almost the whole story:

- explode;
val it = fn : string -> char list
- map;
val it = fn : ('a -> 'b) -> 'a list -> 'b list
- Char.toString;
val it = fn : char -> string
- Int.fromString;
val it = fn : string -> int option
- valOf;
val it = fn : 'a option -> 'a
- valOf o Int.fromString o Char.toString;
val it = fn : char -> int
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 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 2 vote down
>> "124890".split("").map{ |i| i.to_i}
=> [1, 2, 4, 8, 9, 0]
link|flag
vote up 2 vote down

In C:

void convert (int * array, char * string)
{
  int i=0;

  while (*string)
    array[i++] = *(string++)-'0';
}
link|flag
show 6 more comments
vote up 2 vote down

Just like James Curran's in C# but with one less line

string nums = "124890"; 
int[] vals = new int[nums.Length]; 
for (int i = 0; i < vals.Length; i++) 
    vals[i] = Convert.ToInt32(nums[i]);
link|flag
vote up 2 vote down

Here's a one-liner in C#, without the fancy => stuff.

Array.ConvertAll<char, int>(s.ToCharArray(), new Converter<char, int>(delegate(char c) { return int.Parse(c.ToString()); }));

That's a crappy solution, as noted. Now I've just tried to make it worse (without adding too many meaningless function calls). Here's a one-liner with type safety!

Array.ConvertAll<char, int>(Enumerable.TakeWhile<char>(s.ToCharArray().AsEnumerable<char>(), new Func<char,bool>(delegate(char c) { int i; return int.TryParse(c.ToString(), out i); })).ToArray<char>(), new Converter<char, int>(delegate(char c) { return int.Parse(c.ToString()); }));
link|flag
show 7 more comments
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.