Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
show 5 more comments

closed as not constructive by Kev Jan 11 '12 at 23:49

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

61 Answers

1 2 3
up vote 19 down vote accepted

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]
share|improve this answer

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()).

share|improve this answer
2  
definitely the most readable solution given. – Jeremy 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 '09 at 22:05
1  
Python is good for brevity, but my upvote is for the readability. – Eric Wilson Sep 29 '09 at 10:09
show 4 more comments

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!

share|improve this answer
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

In Ruby:

 s.scan(/\d/).map { |c| c.to_i }
share|improve this answer

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.

share|improve this answer

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);
}
share|improve this answer
2  
It's more readable if you use a character literal '0' instead of 48. – Mark Baker Oct 3 '08 at 16:03
1  
Nobody, and I mean NOBODY uses EBCDIC anymore. It has annoying things like 'i'+1 not equaling 'j'. – Adam Rosenfield Nov 18 '08 at 4:43
show 4 more comments

F#

"123456789" |> Seq.map (string >> int)
share|improve this answer
<?php
    $array = str_split("124890");
?>

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

share|improve this answer
1  
I beg to differ: <?php $array = str_split("124890"); echo $array[1] + $array[2]; ?> The above outputs 6. Welcome to loosely-typed languages. – Gilles Oct 3 '08 at 14:15
show 5 more comments

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!)

share|improve this answer
show 3 more comments

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.

share|improve this answer
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

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();
share|improve this answer
4  
compare to the python and you'll see why I'm glad I'm not writing .NET code anymore... – llimllib Jan 6 '09 at 21:14
show 1 more comment

Here's a C++ version.

std::vector<int> result;
for (const char *digit = "124890";  *digit;  ++digit)
    result.push_back(*digit - '0');
share|improve this answer
show 7 more comments

In Perl, assuming valid input in $str:

@digits = split //, $str;

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

share|improve this answer
show 1 more comment

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.

share|improve this answer

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)
share|improve this answer
show 2 more comments

Lisp:

(loop for i across "12345" collect (digit-char-p i))
share|improve this answer

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';
share|improve this answer
show 1 more comment

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;
share|improve this answer
show 2 more comments

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
share|improve this answer

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);
share|improve this answer

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;
}
share|improve this answer
show 2 more comments

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;
    }
}
share|improve this answer

PowerShell:

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

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

Type coercion is your friend.

share|improve this answer
>> "124890".split("").map{ |i| i.to_i}
=> [1, 2, 4, 8, 9, 0]
share|improve this answer

In C:

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

  while (*string)
    array[i++] = *(string++)-'0';
}
share|improve this answer
1  
True - the parens are not required, but I consider them as good code-style in this case (e.g. dereferencing and incrementing a pointer in one go). – Nils Pipenbrinck Nov 18 '08 at 14:39
show 5 more comments

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]);
share|improve this answer

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()); }));
share|improve this answer
1  
Wow. Even more verbose than the Java version. That's quite an accomplishment. – troelskn Oct 3 '08 at 14:06
1  
I don't really see the point of making it a "one-liner" since it becomes very hard to read. – Gilles Oct 3 '08 at 14:29
show 5 more comments

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")
share|improve this answer
1 2 3

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