A hash-of-hashes is a multi-dimensional hash that contains nested hashes.

learn more… | top users | synonyms

0
votes
2answers
71 views

Merge values of 2 hashes into 1 using Ruby

I have 2 hashes of hashes that I need to combine on values using Ruby hoh = Hash.new hoh = {"bob::params::search_vol_grp"=>{2=>{"search_group_id"=>2, "vol_ids"=>"2,627,628", ...
-2
votes
3answers
50 views

Iterate through hashed hashes in ruby

I am a beginner and am looking for a method to iterate through a hash containing hashed values. E.g. I only want to print a list of all values of inner hash-elements of the key named "label". My array ...
2
votes
1answer
58 views

Sorting Hash of Hashes by value

I have the following data structure my %HoH = { 'foo1' => { 'bam' => 1, 'zip' => 0, }, 'foo2' => { ...
-1
votes
1answer
95 views

Reverse hash of hashes in Perl [closed]

I got this output by decoding JSON data. Now I want to reverse this data structure and print it using Perl. Can anyone can help me with the code snippet below? I have this data in one variable and ...
0
votes
1answer
43 views

Accessing hash of hashes defined in another file in perl and printing it

Now my file1 contains the hash of hashes as shown below: package file1; our %hash = ( 'articles' => { 'vim' => '20 awesome articles posted', ...
1
vote
1answer
43 views

list-of-list vs. hash-of-hashes

Setup: I need to store feature vectors associated with string-string pairs. The string-string pairs encode an input-output relationship. There will be a relatively small number of inputs X (e.g. 5), ...
-2
votes
1answer
89 views

How to get the number of keys in a perl hash of hashes?

I want to get the number of entries for each group, but it seems to be giving me the wrong answer. There are elements in each group that might be repeated. The results I'm getting don't make sense. ...
0
votes
1answer
90 views

How to reference and dereference a hash of hashes for subroutines in Perl

Does anyone know how to dereference a hash of hashes so that I can use it in my subroutine. As you can see, I'm having trouble accessing my Hash of Hashes data structure in my subroutine. my ...
0
votes
1answer
111 views

Perl accessing the elements in a hash/hash reference data structure

I have a question I'm hoping you could help with as I am new to hashes and hash reference stuff? I have the following data structure: $VAR1 = { 'http://www.superuser.com/' => { ...
1
vote
1answer
74 views

Sorting by value Hash of Hashes Perl

Let's say I have a hash of hashes data structure constructed as followed: %HoH => ( flintstones => { family_members => "fred;wilma;pebbles;dino", ...
2
votes
1answer
77 views

Handling complex hashes in perl

I have simple perl script as below: #!/usr/bin/perl use strict; use Data::Dumper; my %x; $x{"a"}="b"; $x{"b"}={'c'=>3,'d'=>4}; ...
-1
votes
1answer
85 views

Perl hash of hashes

I have a file with a list of lines like at 12345 injected value 1 to 'signal_A' at 12345 injected value 0 to 'signal_B' at 12346 injected value 1 to 'signal_A' at 12348 injected value 1 to ...
0
votes
1answer
51 views

How do I delete a key from a hash?

I have a hash of hashes representing a deck of cards, I am trying to figure out how I would delete a specific card from the deck. Please let me know any suggestions or methods I should be learning or ...
5
votes
4answers
379 views

Perl hash of hashes of hashes of hashes… is there an 'easy' way to get an element at the end of the list?

I have a Perl hash of hashes of ... around 11 or 12 elements deep. Please forgive me for not repeating the structure below! Some of the levels have fixed labels, e.g. 'NAMES', 'AGES' or similar so ...
1
vote
0answers
59 views

Implementing music wishlist like hash of hashes

I'm trying to work with itunes rails gem, for example: >> itunes = ITunes::Client.new >> songs = itunes.music('green day she') => <#Hashie::Rash result_count=15 results=[...]> ...
1
vote
1answer
107 views

not able to access hash of hash of array values

I have written the following code in Perl. The code is reading a pdb file and getting some values. Ignore the top part of the code,where everything is working perfect. Problem is in the sub-routine ...
1
vote
3answers
137 views

What is the most ruby-ish way of accessing nested hash values at arbitrary depths?

Given a hash such as: AppConfig = { 'service' => { 'key' => 'abcdefg', 'secret' => 'secret_abcdefg' }, 'other' => { 'service' => { 'key' => 'cred_abcdefg', ...
2
votes
2answers
290 views

Combining 2+ 'deep' (multi-dimensional) hashes in perl

There is a question that explains exactly what I want here: how to merge 2 deep hashes in perl However, the answer there does not seem to work for me (suggestions of using the Merge module). I have ...
2
votes
2answers
93 views

Can I rename a hash key inside another hash in Perl?

I have a hash of a hash (HoH) that I got from using select_allhashref on a mysql query. The format is perfect for what I want and I have two other HoH by similar means. I want to eventually merge ...
-2
votes
5answers
115 views

access specific key of a hash of hash in perl?

%HoH = ( Group1=> { member1=> "fred", member2=> "barney", }, Group2 => { member1 => "george", member2 => "jane", }, ); How can I access second value or ...
0
votes
2answers
126 views

How do I iterate through an array of hashes of arrays once per hash, and not once per nested array element?

Apologies if this has been resolved elsewhere. I searched and searched. I'm working with a config file that separates chunks of data by left-aligning the name of each chunk and indenting arguments ...
0
votes
2answers
69 views

How can I most efficiently iterate over a hash of hashes in order based on key value in inner hash?

I've got a JSON hash of hashes returned by a website API that I want to parse and display based on a specific key's value within the internal hashes. I can think of solutions that would achieve this, ...
-1
votes
3answers
215 views

perl populating hash of hashes recursively

I have a hash like this: { ABC => [1, 2], 1 => [11, 12,13,14], 13 => [17,20] } I want to generate a hash of hashes like this: (ABC => { 1 => {11 => {}, ...
0
votes
2answers
97 views

calculating the sum of specific array values in ruby?

Pivotal Tracker is a project management tool that I use. I'm using the Pivotal Tracker Ruby Gem to access the API. I'm trying to create a hash of each member with the number of points that they have ...
0
votes
2answers
153 views

Iterating over Perl hash of hashes and array of hashes

I'm stuck yet again and need some assistance. As usual, it's my nemesis - Hashes. Essentially, I'm trying to write to a database, all the items of software on a z/OS mainframe. I have managed to ...
3
votes
1answer
395 views

How to store Hash of Hashes in Moose?

i was wondering, what is the best way to store Hash of Hashes in Moose. Lets take for example a Hash like this: my %hash = ('step1' => {'extraction' => \$object1, ...
2
votes
1answer
157 views

How to print a hash of hashes [of hashes]* as CSV in perl

I want to print a hash of hashes of hashes (with an indefinable depth) as CSV. Imagine that I have a structure of foos, bars, cars, ... where the keys of the deepest hash are pointing to a numeric ...
1
vote
1answer
412 views

perl fork vs. thread for shared data structures

I am writing a script where I need to share data structures among multiple processes. Currently I am forking, which worked great when I only needed to share simple variables (i.e. $var, @arr, %hash). ...
0
votes
3answers
958 views

Ruby: deleting a specific element from a nested hash

I am a newb and trying to work with a nested hash. I have a deck of cards represented as follows: deck_of_cards = { :hearts => {:two => 2, :three => 3, :four => 4, :five => 5, :six ...
2
votes
1answer
163 views

merge some complex hashes in ruby

I'd like to merge the following hashes together. h1 = {"201201" => {:received => 2}, "201202" => {:received => 4 }} h2 = {"201201" => {:closed => 1}, "201202" => {:closed ...
1
vote
1answer
171 views

Combining hashes for an ordered set

An accepted way of combining two hashes from different objects is to use XOR. This makes sense, but as mentioned in the second comment by Thomas Pornin in the below post, XOR is commutative, which ...
0
votes
2answers
629 views

Perl add Hash to Hash of Hashes at the end

I am trying to add hash to my hash of hashes like this: %funkce = ( "funkce1" => { "file" => "soubor1", "name" => "jmeno1", "varargs" => "args", "rettype" ...
2
votes
2answers
543 views

Ruby hash of hash of hash

How can I have a hash of hash of hash? My test returns undefined method `[]' for nil:NilClass (NoMethodError) Any tips? found = Hash.new() x = 1; while x < 4 do found[x] = Hash.new() y ...
1
vote
3answers
767 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 = ( ...
5
votes
1answer
1k 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 ...
3
votes
1answer
1k 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 ...
1
vote
2answers
110 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
3answers
399 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
748 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 => [ ...
2
votes
5answers
416 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
298 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"; ...
1
vote
1answer
117 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
239 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}};, ...
3
votes
2answers
200 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}); ...
1
vote
3answers
959 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 ...
2
votes
2answers
235 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
112 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' => { ...
3
votes
3answers
1k 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
4
votes
10answers
5k 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
1answer
305 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. ...

1 2