Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
2answers
1k views

Hashes of Hashes Idiom in Ruby?

Creating hashes of hashes in Ruby allows for convenient two (or more) dimensional lookups. However, when inserting one must always check if the first index already exists in the hash. For example: h ...
5
votes
3answers
160 views

How do I map (and sort) values from a hash of hashes?

I have a hash of hashes, like so: %hash = ( a => { b => 1, c =>2, d => 3}, a1 => { b => 11, c =>12, d => 13}, a2 => { b => 21, c =>22, d => 23} ) I want to extract the "b" ...
4
votes
12answers
310 views

Looking for a Good Way to Avoid Hash Conditionals in Ruby

I'm looking for a good way to avoid checking for nil at each level in deeply nested hashes. For example: name = params[:company][:owner][:name] if params[:company] and params[:company][:owner] and ...
3
votes
2answers
91 views

How to construct a hash of hashes

I need to compare two hashes, but I can't get the inner set of keys... my %HASH = ('first'=>{'A'=>50, 'B'=>40, 'C'=>30}, 'second'=>{'A'=>-30, 'B'=>-15, 'C'=>9}); ...
3
votes
3answers
234 views

How to assign hash[“a”][“b”]= “c” if hash[“a”] doesn't exist?

is there any other simpler way than if (hash.has_key?("a") ) hash["a"]["b"] = "c" else hash["a"] = Hash.new hash["a"]["b"] = "c" end
3
votes
8answers
286 views

Accessing elements of nested hashes in ruby

I'm working a little utility written in ruby that makes extensive use of nested hashes. Currently, I'm checking access to nested hash elements as follows: structure = { :a => { :b => 'foo' }} ...
2
votes
5answers
142 views

Access nested hash in Perl HoH without using keys()?

Consider the following HoH: $h = { a => { 1 => x }, b => { 2 => y }, ... } Is there a way to check whether a hash key exists on the second ...
2
votes
4answers
96 views

Perl: Create hash of hashes, last key as a reference to an array

http://codepad.org/8fJG5XaB Need a little help creating hashrefs of hashrefs, with the last key as a reference to an array. use Data::Dumper; my $foo = "a:b:c:d:a"; my $bar = "a:b:c:d:z"; ...
2
votes
2answers
80 views

How to access an element deep in an array of arrays without getting 'undefined method' error

When trying to access an element deep in an array of arrays, what is the best way to avoid getting the error 'undefined method `[]' for nil:NilClass' if an element doesn't exist? For example I'm ...
2
votes
3answers
96 views

Why does my multi-leveled hash print the way I expect?

Here's the code and its not working, What I am trying to do is to pass Hash of Hashes to subroutine aka function, but it gives some odd output. my %file_attachments = ( 'test1.zip' => { ...
2
votes
1answer
133 views

How would I delete hash keys only when the key has no values?

I have built a loop that finds all of the VMDKs for a perticular VM and then create a hash of the output, then it tests whether the disk is actually present by looking for a parameter in the VMX file. ...
2
votes
5answers
865 views

Nested hash defined?()

What's the most concise way to determine if @hash[:key1][:key2] is defined, that does not throw an error if @hash or @hash[:key1] are nil? defined?(@hash[:key1][:key2]) returns True if @hash[:key1] ...
2
votes
2answers
208 views

How do I recursively define a Hash in Ruby from supplied arguments?

This snippet of code populates an @options hash. values is an Array which contains zero or more heterogeneous items. If you invoke populate with arguments that are Hash entries, it uses the value you ...
1
vote
2answers
57 views

How do I implement Hash#all? for multidimensional hashes?

Given that I have these hashes: h1 = {"a" => { "b" => 1, "c" => {"d" => 2, "e" => 3} } } h2 = {"a" => { "b" => 1, "c" => nil } } And I want these results: h1.multi_all? # ...
1
vote
1answer
37 views

How to add a line to multi dimensional hash?

I'm quite new to ruby and I'm blocking on this simple issue: I have the following hash: theData"=>{"586"=>{"status"=>"0"}, "585"=>{"status"=>"0"}} I would like to add a ...
1
vote
3answers
105 views

Going through a Hash of Hash in Perl?

When I try to deference the stored reference (which is set up in the extract Tripwire/get Data subroutines) and convert it back to a hash(in the Compare subroutine), ie %hash = %{$DataHash{$key}};, ...
1
vote
3answers
134 views

how to create hash within hash

How am I able to create a hash within a hash, with the nested hash having a key to indentify it. Also the elements that I create in the nested hash, how can I have keys for them as well for example ...
1
vote
2answers
312 views

How to access a multidimensional hash session?

I am using the session method of Ruby on Rails so that I have a session[:user_params] hash like this: password_confirmation: "test" password: test email: test@test.ij I can access that simply using ...
1
vote
1answer
118 views

Building a hash of hashes to determine largest numerical value in ruby

I have a data file that looks like this: FBpp0070000 acyr193594273 acyr 866 FBpp0070000 acyr193577824 acyr 536 FBpp0070000 acyr193693009 acyr 445 FBpp0070000 bomb193605819 bomb 503 FBpp0070000 ...
1
vote
2answers
223 views

Multilevel Hash Default Parameters When Accessing Non-Existant Keys as in h[1][1] += 1

I'm trying to create a Hash of Hash-es. The value of the 2nd level hash is an integer defaulted to 0. What I'm trying to do is start with an empty hash of hashes, and then when I add a value if the ...
1
vote
3answers
121 views

perl - help with hash and dumping of records

I have a perl script that is only keeping the last set of records for a named set and I have more than one set of records. So its over writing the data in the hash and just keeping the last set. I ...
1
vote
2answers
149 views

help understanding perl hash

Perl newbie here...I had help with this working perl script with some HASH code and I just need help understanding that code and if it could be written in a way that I would understand the use of ...
1
vote
3answers
441 views

How can I create a hash of hashes in Perl?

I am new to Perl. I need to define a data structure in Perl that looks like this: city 1 -> street 1 - [ name , no of house , senior people ] street 2 - [ name , no of house , senior ...
0
votes
3answers
82 views

How to create a hash of hashes in C++?

Is there a way to create a hash of hashes in C++? Effectively I am trying to do what you can do in Perl but only in C++. Here is an example of Perl code I would like to have happen in C++ %hash = ( ...
0
votes
1answer
49 views

Ruby dup/clone recursively

I have a hash like: h = {'name' => 'sayuj', 'age' => 22, 'project' => {'project_name' => 'abc', 'duration' => 'prq'}} I need a dup of this hash, the ...
0
votes
1answer
55 views

Converting nested hash keys from CamelCase to snake_case in Ruby

I'm trying to build an API wrapper gem, and having issues with converting hash keys to a more Rubyish format from the JSON the API returns. The JSON contains multiple layers of nesting, both Hashes ...
0
votes
3answers
107 views

Iterating through a ruby nested hash with nils?

Let say I'm getting back a JSON nested hash (or array of hashes) from an API @example = {"results" = > {{"poop" => "shoop"},{"foo" => {"shizz" => "fizz", "nizzle"=>"bizzle"}}} YAML ...
0
votes
3answers
63 views

accessing values of json structure perl

I have a json structure that i'm decoding that looks like this person => { city => "Chicago", id => 123, name => "Joe Smith", pets => { cats => [ ...
0
votes
4answers
94 views

help printing out hash keys to needed format

I need help printing out data from a hash/hash ref to STDOUT or file with data in a specific order if possible. I have a perl routine that uses hash references like so: #!/usr/local/bin/perl use ...
0
votes
1answer
939 views

extracting specific value from a multidimensional hash in ruby by key name

let's say i have a multidimensional hash, and in one of the subhashes i have a key=>value pair which i need to retrieve by key. how can i do it? example hashes: ...