[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

convert string array to interger array in in one line

Jags Rao

11/5/2008 1:09:00 PM

hi guys

i have a array like this for e.g

[["0", "0", "0", "0", "0", "3", "3"],
["0", "0", "0", "0", "0", "3", "3"],
["0", "0", "0", "0", "0", "3", "3"],
["0", "3", "0", "0", "0", "0", "3"],
["0", "0", "0", "0", "0", "0", "3"]]

how wud i convert to this

[[0, 0, 0, 0, 0, 3, 3],
[0, 0, 0, 0, 0, 3, 3],
[0, 0, 0, 0, 0, 3, 3],
[0, 0, 0, 0, 0, 3, 3],
[0, 0, 0, 0, 0, 0, 3],
[0, 0, 0, 0, 0, 0, 3],
[0, 3, 0, 0, 0, 0, 3],
[0, 0, 0, 0, 0, 0, 3],

i.e a string array to integer array in 1 line if possible

pls help
--
Posted via http://www.ruby-....

3 Answers

Stefano Crocco

11/5/2008 1:14:00 PM

0

Alle Wednesday 05 November 2008, Jags Rao ha scritto:
> hi guys
>
> i have a array like this for e.g
>
> [["0", "0", "0", "0", "0", "3", "3"],
> ["0", "0", "0", "0", "0", "3", "3"],
> ["0", "0", "0", "0", "0", "3", "3"],
> ["0", "3", "0", "0", "0", "0", "3"],
> ["0", "0", "0", "0", "0", "0", "3"]]
>
> how wud i convert to this
>
> [[0, 0, 0, 0, 0, 3, 3],
> [0, 0, 0, 0, 0, 3, 3],
> [0, 0, 0, 0, 0, 3, 3],
> [0, 0, 0, 0, 0, 3, 3],
> [0, 0, 0, 0, 0, 0, 3],
> [0, 0, 0, 0, 0, 0, 3],
> [0, 3, 0, 0, 0, 0, 3],
> [0, 0, 0, 0, 0, 0, 3],
>
> i.e a string array to integer array in 1 line if possible
>
> pls help

a.map{|i| i.map{|s| s.to_i}}

Stefano


RichardOnRails

11/5/2008 9:41:00 PM

0

On Nov 5, 8:08 am, Jags Rao <aquaj...@yahoo.com> wrote:
> hi guys
>
> i have a array like this for e.g
>
> [["0", "0", "0", "0", "0", "3", "3"],
>  ["0", "0", "0", "0", "0", "3", "3"],
>  ["0", "0", "0", "0", "0", "3", "3"],
>  ["0", "3", "0", "0", "0", "0", "3"],
>  ["0", "0", "0", "0", "0", "0", "3"]]
>
> how wud i convert to this
>
> [[0, 0, 0, 0, 0, 3, 3],
>  [0, 0, 0, 0, 0, 3, 3],
>  [0, 0, 0, 0, 0, 3, 3],
>  [0, 0, 0, 0, 0, 3, 3],
>  [0, 0, 0, 0, 0, 0, 3],
>  [0, 0, 0, 0, 0, 0, 3],
>  [0, 3, 0, 0, 0, 0, 3],
>  [0, 0, 0, 0, 0, 0, 3],
>
> i.e a string array to integer array in 1 line if possible
>
> pls help
> --
> Posted viahttp://www.ruby-....

Maybe this is a little clearer:

aStrings = [["0", "0", "0", "0", "0", "3", "3"],
["0", "0", "0", "0", "0", "3", "3"],
["0", "0", "0", "0", "0", "3", "3"],
["0", "3", "0", "0", "0", "0", "3"],
["0", "0", "0", "0", "0", "0", "3"]]

aFixnums = aStrings.map{|i| i.map{|s| s.to_i}}
puts aStrings[0][0].class.to_s # => String
puts aFixnums[0][0].class.to_s # => Fixnum
puts aFixnums[0][0].integer? # => true (So a Fixnum is_a Integer)

Note that the last line asserts that a Fixnum object is indeed an
Integer

HTH,
Richard

Todd Benson

11/5/2008 10:47:00 PM

0

On Wed, Nov 5, 2008 at 7:08 AM, Jags Rao <aquajags@yahoo.com> wrote:
> hi guys
>
> i have a array like this for e.g
>
> [["0", "0", "0", "0", "0", "3", "3"],
> ["0", "0", "0", "0", "0", "3", "3"],
> ["0", "0", "0", "0", "0", "3", "3"],
> ["0", "3", "0", "0", "0", "0", "3"],
> ["0", "0", "0", "0", "0", "0", "3"]]
>
> how wud i convert to this
>
> [[0, 0, 0, 0, 0, 3, 3],
> [0, 0, 0, 0, 0, 3, 3],
> [0, 0, 0, 0, 0, 3, 3],
> [0, 0, 0, 0, 0, 3, 3],
> [0, 0, 0, 0, 0, 0, 3],
> [0, 0, 0, 0, 0, 0, 3],
> [0, 3, 0, 0, 0, 0, 3],
> [0, 0, 0, 0, 0, 0, 3],
>
> i.e a string array to integer array in 1 line if possible

Here's a weird one for your enjoyment (arr is your array)...

require 'matrix'; p Matrix[*arr].map {|i| i.to_i}.to_a

...of course, just like Stefano's solution, the object must respond to
the #to_i method.

You can #join it and split it up (#each_slice) again (my first cool
solution, but looks _really_ ugly). Mapping twice is the easiest and
is the way you probably should go.

Todd