The perl-data-structures tag has no wiki summary.
-1
votes
2answers
26 views
how to declare array reference in hash refrence
my $memType = [];
my $portOp = [];
my $fo = "aster.out.DRAMA.READ.gz";
if($fo =~/aster.out\.(.*)\.(.*)\.gz/){
push (@{$memType},$1);
push (@{$portOp},$2);
}
print Dumper ...
0
votes
2answers
60 views
Perl:How to change values in global hash in sub-routine
I have a global hash
our %employee = (
'ename'=>"rahul",
'eno'=>"25",
);
later I want to use it in a subroutine wid different values
sub emp
{
print ("$employee->'ename' = ...
3
votes
0answers
62 views
is there a perl module for accessing complex structure data with sql language?
I often save a lot of data into a hash var, or get data according to the conditions. it is not convenient, so i want a module with which accessing data with sql as a nosql. i found DBD::RAM. is there ...
2
votes
2answers
53 views
Perl:Access values of hash inside a hash
I have just picked up Perl.
I have a little confusion with accessing hash values. Below is the code where I am trying to access the values of a hash inside a hash.
Since am using a simple text ...
0
votes
1answer
45 views
XMLin not parsing XML properly
I have an XML as follows in $response_xml
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/"><?xml version="1.0" ...
0
votes
0answers
13 views
how to add an array of an array to valuess of hash
I have an array a1 and an AOA a2.
@a1 = [1,2,3,4,5] and @a2 = [ [adf],[bcg],[yet],[gpd],[iop]].Now i want to have a hash where a1 are the keys and arrays of a2 as values. how do I do it ?
1
vote
2answers
42 views
Perl: inserting array of arrays in into a array which is a value for a key
I have a need of inserting an array of arrays into an array.And this whole array is a value for a key in a hash.i meant hash should look like this:
"one"
[
[
1,
2,
[
[
3,
...
0
votes
2answers
56 views
perl optional command line argument
I am new to Perl and wish to know if the following logic works in Perl :-
I have to execute a command using Perl script with some arguments and I need to prepare that
arguments list, some of the ...
3
votes
3answers
69 views
limiting the size of an array?
Suppose we have the following code :
#!usr/bin/perl
use strict ;
use warnings ;
sub print_ele_arr{
my @arr = <STDIN> ;
#print the elements of the array here .
#do something else ..
}
...
1
vote
3answers
81 views
what is ($file eq '.' || $file eq '..') ?
I found this script that read from directories recursively and i have troubles understanding this line of code :
if ($file eq '.' || $file eq '..')
so if someone could explain this a little bit , ...
0
votes
2answers
35 views
Use of uninitialized value
I'm trying to execute this simple code but it's already give me the following error :
Use of uninitialized value $string in string at permutation.pl line 11.
#!usr/bin/perl
use strict ;
use ...
0
votes
1answer
32 views
Perl: How to make an optimal ranking
My brother has thousands of items ids and the number of items sold in the following fashion:
$VAR1 = {
'sold_times' => 4,
'item_id' => 1,
};
...
1
vote
2answers
46 views
How to get HTML table cell values corresponding to a header using Perl
I have multiple HTML pages located in the server and each page has a different format. However each page contains a table with some header and row values.
Now I want to read the header and associate ...
2
votes
2answers
64 views
Perl: dereferencing an hash of hash of hashes
consider the sample code:
$VAR1 = {
'en' => {
'new' => {
'style' => 'defaultCaption',
'tts:fontStyle' => 'bold',
...
1
vote
3answers
92 views
Perl for loop error
I am new to the Perl, I was trying to execute a simple program as encoded below using Strawberry perl 5, version 16:
#!usr/bin/perl
use warnings;
use strict;
my @array= {1,2,3,5,7,9};
my $i;
...
1
vote
2answers
49 views
Anonymous subroutines/subroutine references stored in data structures
Why would I use Perl anonymous subroutines instead of a named one? inspired me to think about the merit of:
Storing anonymous subs in arrays, hashes and scalars.
It's a pretty cool concept, but is ...
0
votes
2answers
124 views
Use of uninitialized value in subroutine entry at mytest.pl
#!/usr/bin/perl
use strict;
use warnings;
use List::Util qw(min max);
use Set::IntervalTree;
use GenomeLookupUtil;
my $chromCol = 0;
my $startCol = 0;
my $endCol = 0;
if($ARGV[2] eq "VSC") {
...
2
votes
4answers
90 views
Perl hash of hashes and array - print the array contents
Have the below data structure. I want to print the entire array for the key TUESDAY. Tried the below way but it's not working. I don't want to have an additional statement of taking the array ...
0
votes
1answer
34 views
Perl XML::SAX - character() method error
I'm new to using Perl XML::SAX and I encountered a problem with the characters event that is triggered. I'm trying to parse a very large XML file using perl.
My goal is to get the content of each tag ...
0
votes
2answers
94 views
perl fileparse and push into multiple arrays
I have an array that contains file paths. I would like to split the array to give me the file_name, dir_name and the extension. I am trying to use File::Basename perl module.
Can someone help me ...
-2
votes
1answer
86 views
In Perl, how do I deeply compare data structures serialized to JSON format?
I have two data structures in JSON format. They are deeply nested hashes. How can I deeply compare these structures?
0
votes
1answer
58 views
reading textfile and saving theinfo into and array of array in perl
I have a text file which contains following code. I want create perl code to read that containt and form a corresponding data structure in perl. I can read the .txt file with below perl code but how ...
1
vote
1answer
40 views
XML::Simple - How to fix that the same xml structure results in 2 different Perl data structures, depending on amount of members/syblings?
I am new to XML::Simple (and also not very keen in xml). I want to use it for parsing a simple xml structure that I get as result of an API. I do not have any influence on the xml I get.
When the ...
1
vote
3answers
275 views
Perl nesting hash of hashes
I'm having some trouble figuring out how to create nested hashes in perl based on the text input.
i need something like this
my % hash = {
key1 => \%inner-hash,
key2 => \%inner-hash2
}
...
0
votes
5answers
117 views
How do I access arrays of array in perl?
Hi I have a array as myarray. I would like to make a list as '1 2 3' which is joining the first subarray. My string is printing the memory location I suppose instead of list. any help will be ...
3
votes
3answers
230 views
Perl - anonymous hashmaps and arrays - few questions
Hello I am learning perl and I will post several assumptions here. So please feel free to commenting and correcting me if I am wrong somewhere.
Creating hash are done (among several another ways) ...
0
votes
3answers
242 views
Parsing JSON Data::Dumper output array in Perl
I'm trying to edit an old perl script and I'm a complete beginner. The request from the server returns as:
$VAR1 = [
{
'keywords' => [
'bare ...
-1
votes
2answers
60 views
group lines by column and print one value
I have a file which looks like below:
LINE abc 1 somevalue
LINE abc 1 somevalue
LINE abc 1 somevalue
LINE def 2 somevalue
LINE def 2 somevalue
LINE abc 3 somevalue
LINE abc 3 somevalue
LINE mno 4 ...
0
votes
2answers
68 views
Hash value is not re-initialized when loop is terminated with 'last' keyword
Consider the following nested loops:
my %deleted_documents_names = map { $_ => 1 }
$self->{MANUAL}->get_deleted_documents();
while($sth->fetch){
.....
.....
.....
...
-3
votes
1answer
75 views
Hash function assigned to a number
Could any one explain what this statement does in Perl
$type{$_->{brand}} = 1;
I could understand that the hash function "type" has a keyword brand holding the reference of another hash "brand" and ...
4
votes
2answers
72 views
Trouble while using thaw on the serialized data structure in perl
I am using perl DB_File module to persist the hash variable into a file.
My hash variable contains key as normal string and value as another hash variable.
I used Storable::freeze(\%value); to ...
-1
votes
1answer
89 views
How do I use a 2 dimensional array for accessing data in a file using Perl?
I am new to Perl coding & am facing a situation. Here is the problem statement:
I have a file which contains some data (only numbers) in matrix form like
1 2 3 4 5 6 .......
7 9 4 6 7 8 .......
...
2
votes
3answers
142 views
How Can I Store a File Handle in a Perl Object and how can I access the result?
I wanted to store a file handle in a Perl Object. Here is how I went about it.
sub openFiles {
my $self = shift;
open (my $itemsFile, "<", "items.txt") or die $!;
open (my ...
1
vote
4answers
116 views
Creating subs on the fly from eval-ed string in perl
I need to transform data structures from a list of arrays into a tree-like one. I know the depth of the tree before I start processing the data, but I want to keep things flexible so I can re-use the ...
1
vote
2answers
91 views
Merge Hashes in Perl: Special Case
How to merge two hashes in perl where keys can collide and the values are arrays.?
In case of collision I want to merge the value arrays.
Would normal merge be just fine?
I am sorry if this is a ...
3
votes
3answers
92 views
Nicer way to test if hash entry exists before assigning it
I'm looking for a nicer way to first "test" if a hash key exists before using it. I'm currently writing a eventlog parser that decodes hex numbers into strings. As I cannot be sure that my decode ...
2
votes
3answers
135 views
List of paths into hash array tree in Perl
I got an array of paths
C:\A
C:\B\C
D:\AB
and I'd like to have these in a hash array tree so I can go through them in a TT2 template.
What I mean is like this:
@dirs = [
{
...
0
votes
1answer
113 views
how can tree like data structure be implemented in this case
I have a file like this
A 100 200
A 120 220
B 140 250
Another file is like this
A 130 210
A 133 215
B 180 270
Then I have to compare each row from first file to each row of second file and ...
1
vote
2answers
136 views
Inserting element to hash of hashes in perl
I have an array. The elements in the array are containing semi colon in between them.
Array looks something like this:
@Array = { "AUT;E;1",
"AUT;E;2",
"CHE;A;1",
...
-1
votes
3answers
135 views
Hash of Hashes in Perl
I have the question in Perl:Input 5 mobile set details (Invoice number, Model , Company, Memory , Price , Quantity ). Print all the details, total amount (quantity * price) , total quantity , number ...
0
votes
6answers
177 views
reading columns from Hash of Arrays
I'm new in perl and have a question concerning the use of hashes of arrays to retrieve specific columns. My code is the following:
my %hash = ( name1 => ['A', 'A', 'B', 'A', 'A', 'B'],
...
1
vote
1answer
103 views
How to process an array through hash? [closed]
I have the following declarations:
$xx="xx";
$yy="yy";
@zone_Nw_Ip_Val = ($xx,$yy);
%zone_Nw_Ip;
$zone_Nw_Ip{"eq"} =[@zone_Nw_Ip_Val];
$zone_Nw_Ip{"neq"} =[@zone_Nw_Ip_Val];
...
1
vote
1answer
138 views
Perl hashref printing keys
I have the following hashref :-
my $hashref = {'a'=>(1,2,3,4),
'b'=>(5,6,7,8)};
then I use the following to just print the keys (i.e. 'a' and 'b') :-
foreach (keys %$hashref){
...
3
votes
2answers
193 views
Memory Management in perl
I have facing a weird issue of handling memory in perl.
I am working in a perl application which uses pretty big hash-structures. I am assigning the has ref to and fro objects. But at the end it ...
1
vote
4answers
340 views
Is it possible to iterate through a hash in sorted order using the while(my($key, $value) … ) {} method?
For a hash of this format:
my $itemHash = {
tag1 => {
name => "Item 1",
order => 1,
enabled => 1,
},
tag2 => {
name => "Item 2",
...
0
votes
1answer
98 views
Why does function call as argument to the push cause 'Not an ARRAY reference' in Perl?
Would somebody be so pleasant to explain why does the next thing happen? Here is the code:
#!/usr/bin/perl
use v5.14;
use warnings;
my @arr = (1, 2, 3);
sub func
{
return @arr;
}
...
1
vote
4answers
96 views
What is the difference in memory usage and reference counting in “has-a” and “is-a” relationship in Perl?
I read the "Programming Perl" book which is rather complicated in some places. And one of those places is the section "Instance Destructors" in the 12-th chapter "Objects". This section says:
...
-3
votes
3answers
117 views
Generating sets of array in perl
Given perl script cut the input sequence at "E" and skips those particular positions of "E" which is mentioned in @nobreak, and generates an array of fragments as an output. But I want a script which ...
1
vote
1answer
142 views
Accessing elements in hash of hash of arrays in perl
my %PlannedPerWeek = (
September => {
Week1 => [80, 23, 199, 45, 19, 36],
Week2 => [78, 21, 195, 43, 18, 36],
...
0
votes
1answer
213 views
Printing a Table from a Perl Data Structure
I have a Perl data structure like the following:
%hash = (
table_id => {
column_1_header =>
[
column_value_1,
column_value_2,
...

