Array to Hash in 1.8.6 vs 1.8.7

F

Fernando Perez

I'm damn toast!

My dev machine runs a manually compiled 1.8.7 version of Ruby. My server
runs a Debian Etch with Ruby 1.8.6 version.

From a string:

1:2_5:6

I want to convert it to a hash: {"1" => "2", "5" => "6"}

On my dev machine the following works:
Hash[(session.split("_").map { |couples| couples.split(":") }).flatten]

On my server it pukes on me with the following error:
odd number of arguments for Hash

How can I fix it with Ruby 1.8.6 and 1.8.7 compatibility? I don't want
to play with the Ruby version of Debian etch as it's the latest
available package.


Many thanks in advance.
 
B

badboy

Fernando said:
I'm damn toast!

My dev machine runs a manually compiled 1.8.7 version of Ruby. My server
runs a Debian Etch with Ruby 1.8.6 version.

From a string:

1:2_5:6

I want to convert it to a hash: {"1" => "2", "5" => "6"}

On my dev machine the following works:
Hash[(session.split("_").map { |couples| couples.split(":") }).flatten]

On my server it pukes on me with the following error:
odd number of arguments for Hash

How can I fix it with Ruby 1.8.6 and 1.8.7 compatibility? I don't want
to play with the Ruby version of Debian etch as it's the latest
available package.


Many thanks in advance.
use * like this
Hash[*(session.split("_").map { |couples| couples.split(":") }).flatten]
 
7

7stud --

Fernando said:
I'm damn toast!

My dev machine runs a manually compiled 1.8.7 version of Ruby. My server
runs a Debian Etch with Ruby 1.8.6 version.

From a string:

1:2_5:6

I want to convert it to a hash: {"1" => "2", "5" => "6"}

On my dev machine the following works:
Hash[(session.split("_").map { |couples| couples.split(":") }).flatten]

On my server it pukes on me with the following error:
odd number of arguments for Hash

How can I fix it with Ruby 1.8.6 and 1.8.7 compatibility? I don't want
to play with the Ruby version of Debian etch as it's the latest
available package.


Many thanks in advance.

Here's something less tortured (although still too gruesome for my
tastes):

str = '1:2_5:6'
result = Hash[*str.split(/[:_]/)]

p result

--output:--
{"1"=>"2", "5"=>"6"}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,534
Members
45,007
Latest member
obedient dusk

Latest Threads

Top