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

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

Lisp:

(loop for i across "12345" collect (digit-char-p i))
link|flag
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 0 vote down

T-SQL doesn't have arrays, but you could represent it as a table

Here's a looping routine:

declare @s varchar(1000); set @s='124890';
declare @t table(i int)
declare @i int; set @i=0
while @i<len(@s) begin
    set @i=@i+1;
    insert @t(i) values(convert(int,substring(@s,@i,1)))
end
select * from @t

Here's a direct set-based version, but it relies on having an numbers set:

select convert(int,substring('124890',i,1)) as i from (
  select 1 as i union select 2 union select 3 union select 4 union select 5 union select 6
) j

you could also use my SQL range function to do it like this:

select convert(int,substring('124890',n,1)) as i from dbo.Range(1,len('124890'),1)
link|flag
vote up 0 vote down

Fortran 90 allows you to use strings instead of file handles in read/write operations, which lets you do things like this:

subroutine convert(string, intArray)
  character(len=*),      intent(in)  :: string
  integer, dimension(:), intent(out) :: intArray
  integer :: ii
  do ii=1,len(string)
    read(string(ii:ii), '(I1)') intArray(ii)
  end do
end subroutine convert

Note that to get around the allocation/buffer over-run problem, I am assuming that I'm compiling this with array bounds checking enabled.

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

It's not very succinct in VB6, but more so than VB.NET :)

foo$ = "124890"
ReDim thelist&(Len(foo$))
For i& = 1 To Len(foo$)
    thelist(i&) = Mid(foo$, i&, 1)
Next
link|flag
vote up 0 vote down

One way to do it in Icon:

thelist := [] ; every put(thelist, !"124890" + 0)
# thelist is now [1, 2, 4, 8, 9, 0]

Although if you don't really need a list of ints you can just index (from 1) the chars of the string as if they were ints - Icon is dynamically typed:

write(4 - "014890"[2]) # prints 3
link|flag
vote up 0 vote down

In VB.NET:

  Dim source As String = "123458796"
  Dim data() As Char = source.ToCharArray
  Dim res(source.length - 1) As Integer

  for i as integer = 0 to Source.length - 1 
    res(i) = cint(microsoft.visualbasic.val(data(i)))
  Next
link|flag
show 2 more comments
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 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 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 4 vote down

F#

"123456789" |> Seq.map (string >> int)
link|flag
vote up 11 vote down

In Haskell, it's pretty complex:

map digitToInt
link|flag
show 6 more comments
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 0 vote down

in Lua:

a = {}
string.gsub("1234","%d",function (d) a[#a+1] = tonumber(d) end)
link|flag
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 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 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

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

In Tcl:

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

No code needed in PHP! You can access a string as an array and if you use the number in a numeric way then an implicit typecast will be done for you. Example:

$foo = "01234";

echo 4 - $foo[2];  // echos 2
link|flag
show 4 more comments
vote up 10 vote down

In Ruby:

 s.scan(/\d/).map { |c| c.to_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 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 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 0 vote down

In C#

string nums = "124890";
int[] vals = new int[nums.Length];
int i = 0;
int offset = Convert.ToInt32('0');
foreach(char d in nums)
    vals[i++] = Convert.ToInt32(d) - offset;;

Updated: Fixed algorith, as noted in comments.

link|flag
show 2 more comments
vote up 2 vote down
>> "124890".split("").map{ |i| i.to_i}
=> [1, 2, 4, 8, 9, 0]
link|flag
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

Your Answer

Get an OpenID
or

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