Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
215 views

How can I make a Perl hash from an array with the keys and another array with the values?

In Perl, how do I make hash from arrays @A and @B having equal number of elements? The goal is to have each value of @A as key to value in @B. The resulting hash %C would,then make it possible to ...
7
votes
1answer
249 views

Sorting an Array Reference to Hashes

After executing these lines in Perl: my $data = `curl '$url'`; my $pets = XMLin($data)->(pets); I have an array reference that contains references to hashes: $VAR1 = [ { 'title' ...
6
votes
1answer
222 views

Including Hashes within Hashes in Perl

G'Day, I'm currently working on creating big hashes from a lot of smaller hashes. Let's say that these smaller hashes are defined in a file each, and then can be included by the bigger hash. For ...
6
votes
4answers
139 views

How would I use a hash slice to initialize a hash stored in a data structure?

In an earlier question I asked how to initialize a Perl hash using slices. It is done like this: my %hash = (); my @fields = ('currency_symbol', 'currency_name'); my @array = ('BRL','Real'); ...
5
votes
4answers
280 views

Good numeric hashes

I'm looking to hash a string but I need the output to be an integer so I can't do md5. Do people here have any favorite numeric hashes that they might want to enlighten me with. I'm using PHP. ...
4
votes
3answers
197 views

Convert MD5/SHA1 hash from binary to hex digest

I am looking for a way to convert MD5 and SHA1 hashes from their binary to hex representations and vice versa. I want to do it in Perl but a common explaination is welcome too. use Digest::MD5 qw(md5 ...
4
votes
4answers
171 views

How do I initialize values in a hash without a loop?

I am trying to figure out a way to initialize a hash without having to go through a loop. I was hoping to use slices for that, but it doesn't seem to produce the expected results. Consider the ...
4
votes
4answers
4k views

How can I sort a hash of hashes by key in Perl?

I want to sort a hash which actually has a hash as a value. For instance: my %hash1=( field1=>"", field2=>"", count=>0, ); my %hash2; $hash2{"asd"}={%hash1}; and I inserted lots ...
4
votes
6answers
800 views

C# hashes

I'm new to C# How do i hash files with C# What is available ? (md5, crc, sha1, etc) Is there an interface i should inherit? Basically i want to checksum multiple files and store it in ...
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
5answers
82 views

What mistake am I making in this Perl code?

I tried this code. This isn't working. I am getting no result at output. What mistake am I making? my %fruit_color = ("apple", "red", "banana", "yellow"); my @fruits = keys %fruit_colors; my @colors ...
3
votes
9answers
566 views

How can SHA encryption be possible? [closed]

Duplicate: Confused about hashes How can SHA encryption create unique 40 character hash for any string, when there are n infinite number of possible input strings but only a finite number of ...
2
votes
3answers
62 views

Array of hashes of arrays of references to arrays

I have a problem accessing to data, described in the title of the question. The structure of the data is the following: my @structure = ( { "Name" => "Test", "Param1" => 1, "Data1" ...
2
votes
2answers
91 views

iterating through data array/hashes

I am looking to iterate through these data structures (basically a directory structure) which I pass a given path. The goal is to list the root/base path and then list out all the sub paths if they ...
2
votes
3answers
209 views

troubleshooting “pseudo-hashes are deprecated” while using xml module

I am just learning how to use perl hashes and ran into this message in perl. I am using XML::Simple to parse xml output and using exists to check on the hash keys. Message: Pseudo-hashes are ...
2
votes
1answer
44 views

Padding arrays and turning hashes into arrays

If I have a hash {:one => [1,2,3,4], :two => [6,7,8]} how can I just make an array where Array[0] = [1,6], [1] = [2,7], [2] = [3,8], [3] = [4,nil]`` ?
2
votes
3answers
80 views

In what order the keys/values are getting assigned?

my %fruit_colors = ("apple", "red", "banana", "yellow"); my @fruits = keys %fruit_colors; my @colors = values %fruit_colors; print @fruits; #output is: bananaapple print "\n"; print ...
2
votes
4answers
255 views

How to merge two array of hashes based on hash's value?

How do I turn this: first_array = [ {:count=>nil, :date=>"Jan 31"}, {:count=>nil, :date=>"Feb 01"}, {:count=>nil, :date=>"Feb 02"}, {:count=>nil, :date=>"Feb 03"}, ...
2
votes
1answer
110 views

Is my method of ensuring the integrity of a string secure?

This is my first question here so let me know if I'm doing things wrong! I am building an Android application with Eclipse and am reading QR codes with the barcode reader. This is all working just ...
2
votes
4answers
221 views

Perl Hashes and array

I have an array with 28 elements. I copied array contents into a hash. If i try to print the hash it is not showing all keys and values. Code is given below, @new; %hash = @new; foreach $food ...
2
votes
3answers
181 views

Array of hashes

In perl , i have an array of hashes like 0 HASH(0x98335e0) 'title' => 1177 'author' => 'ABC' 'quantity' => '-100' 1 HASH(0x832a9f0) 'title' => 1177 'author' => 'ABC' ...
2
votes
7answers
497 views

How do I print a hash structure in Perl?

Examples: %hash = (2010 => 21, 2009=> 9); $hash = { a => { 0 => {test => 1}, 1 => {test => 2}, 2 => {test => 3}, 3 => {test => ...
2
votes
4answers
550 views

how can I simply merge a hash into a new one?

I have a simple hash like so { "1234" => "5", "2345" => "6" } How can I create a new hash with both the keys and values in side it? Like so: { key_id = "1234", value_id = "5" }, { key_id = ...
1
vote
2answers
45 views

creating hash from variables to be used in json encode/decode perl

i'm trying to create a test module to test json encoding. i am having issues creating variables that will output correctly with the json encode/decode. if i use just the $cat_1 in the @cats array, it ...
1
vote
4answers
75 views

Proper usage of REJECT method in Ruby on Rails — help me convert many lines into Ruby one-liner

I have an array of hashed names and emails, like this: array = [{"email"=>"test@test.com", "name"=>"Test"}, {"email"=>"testA@gmail.com", "name"=>"Test A"}, {"name"=>"Test ...
1
vote
3answers
48 views

Error trying to loop through array of hashes in Perl

This has been asked before a couple of times, but none of those answers seem to work for my situation. My code: open(FILE, "<", $fileb) or die "File not openable: $!"; while (<FILE>) { ...
1
vote
1answer
59 views

Comparison of two hashes in Perl

I have come across this situation. In the hash1 first column is the key and the rest is datavalue, similarly in the hash2. So what I m trying to do is I want to compare these two hashes and if a ...
1
vote
4answers
813 views

Can a Hash have duplicate keys or values

Can a Hash have duplicate keys or values?
1
vote
2answers
85 views

why does heroku change the order of hashes?

for the life of me i could not figure this out. if i have this in my local dev/production: fields = { :name => { ...}, :description => { ...}, :amount => { .... } } its fine i loop through my ...
1
vote
5answers
214 views

Slashes and hashes in Perl and metacharacters

Thanks for the previous assistance everyone!. I have a query regarding RegExp in Perl My issue is.. I know, when matching you can write m// or // or ## (must include m or s if you use this). What ...
1
vote
2answers
195 views

Perl output array of hashes as table

if you have a array of hashes where the key represents the column name and the value is the row content what would be the best way to output this as a table in perl?
1
vote
2answers
138 views

Using Hashes in URL to Run Script onload

I was wanting to make a link similar to this www.mysite.com/profile/#openTheme When the link has the hash "#openTheme" i want it to run a function on the page when the page is loaded. Is there a ...
1
vote
1answer
967 views

Perl DBI fetchall_hashref

Consider the following table: mysql> select * from vCountryStatus; +-------------+------------+------+---------+--------+-----------------+ | CountryName | CountryISO | Code | Status | Symbol | ...
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
2answers
1k views

Convert byte array to understandable String

I have a program that handles byte arrays in Java, and now I would like to write this into a XML file. However, I am unsure as to how I can convert the following byte array into a sensible String to ...
1
vote
4answers
296 views

How can I maintain a sorted hash in Perl?

@aoh =( { 3 => 15, 4 => 8, 5 => 9, }, { 3 => 11, 4 => 25, 5 => 6, }, { 3 => 5, 4 => 18, ...
1
vote
4answers
146 views

What is the proper syntax for storing an array into a Perl hash?

I'm creating a new object like this: TestObject->new(@array1, @array2) My new method looks like this: sub new { my $class = shift; my $self = {}; my $self->{Array1} = shift; my ...
1
vote
1answer
475 views

Merging contents of array / hash (keys and contents) in Ruby

Arg! Someone replied with an answer, just as I edited the below! So I've put it back to what I had before. ** Original array setup ** myArray = [{"papers"=>[[1,2,3],[1,3,2]], "value"=>"1"}, ...
1
vote
2answers
716 views

How can I reference a hash with a variable name?

I have three hashes named %hash1, %hash2, %hash3. I need to reference each hash by variable and am not sure how to do it. #!/usr/bin/perl # Hashes %hash1, %hash2, %hash3 are populated with data. ...
1
vote
2answers
183 views

How to get to my anonymous arrays?

The following code generates a list of average number of clients connected by subnet. Currently I have to pipe it through sort|uniq|grep -v HASH. Trying to keep it all in perl this doesn't work: ...
1
vote
1answer
909 views

Ruby/Rails 1&2: collection problem

Hey, I just began to learn ruby/rails. At the moment, I try to do an example of a german book "Praxiswissen Ruby on Rails", which is pretty old and written for Ruby on Rails 1. Anyway, I tried to do ...
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
1answer
53 views

Slice/Map Ordered Hash

I am writing a "Punch Clock" application for my office.. I am working on the controller for the "TIme Card" view which should list a users punches for a given week, and total DAILY then add the TOTAL ...
0
votes
3answers
77 views

Using symbols as arguments to ruby methods

I am learning rails and going back to ruby to understand how methods in rails (and ruby really work). When I see method calls like: validates validates :first_name, :presence => true I get ...
0
votes
1answer
64 views

Sorting multidimensional hashes in perl by value within a specific key

Thanks in advance for the help. I have a array called %pepHash with 174 'counts' and multiple 'peptides' in each $count. Here's a snippet of the hash: Count: 39 Peptide: 0 Score: 55.03 MR: ...
0
votes
0answers
29 views

html add attributes helper

I'm working on a set of helpers in Sinatra to help me build html-email faster. There are default that I want to be able to set quickly, while keeping the possibility to overwrite them, or add new html ...
0
votes
1answer
26 views

What is the method of referencing version control commit tags and hashes in Redmine?

What is the method of referencing version control commit tags and hashes in Redmine? ie in commit messages, and in the notes and wikis.
0
votes
3answers
89 views

Trying to push results of hash to an array - Ruby on rails

I'm just beginning to (hopefully!) learn programming / ruby on rails and trying to push the results of a hash to an array using: ApplicationController: def css_class css = Array.new product = ...
0
votes
2answers
73 views

Model.find(:all, :conditions …) on one field for one key-value from a hash?

I have a table of email messages like so: create_table :emails do |t| t.string :emailMessageId t.datetime :date t.string :subject t.string :gmailMessageId t.string :gmailThreadId ...

1 2