Tagged Questions
4
votes
3answers
60 views
is any of array items contained in a string
I have a keywords list and a blacklist.
I want to delete all keywords that contain any of blacklist item.
At the moment Im doing it this way:
my @keywords = ( 'some good keyword', 'some other good ...
0
votes
3answers
28 views
Perl: Indexing function returning array syntax
I have a question about Perl more out of curiosity than necessity. I have seen there are many ways to do a lot of things in Perl, a lot of the time the syntax seems unintuitive to me (I've seen a few ...
0
votes
1answer
39 views
Adding unique elements to a Perl array determined by regex
I'm writing a perl script to analyze error codes and determining whether or not they are unique. The error is unique depending on what line it's on. A standard error message may be:
RT Warning: No ...
2
votes
5answers
92 views
Perl: Create a hash in which the key is an array, and the value is an array of arrays?
I'm trying to create a hash in which keys are contained in an array and values in an array of an array:
my @keys = (1,2,3,4,5);
my @value1 = (a,b,c,d,e);
my @value2 = (f,g,h,i,j);
my @value3 = ...
0
votes
2answers
46 views
Get next element of array inside a foreach loop in perl without using next/skipping to next iteration of loop
I am new to perl and am facing some problem in skipping to next element of an array inside a foreach loop without reiterating the loop. Suppose I have the following case where I am going through a ...
3
votes
4answers
67 views
Perl: Can I use pattern matching to find certain lines in a log file
I have a log file with this type of content:
Mon Nov 19 11:00:01 2012
Host: eccas1635.ecc3.ford.com
accurev-ent inuse: 629
Mon Nov 19 12:00:01 2012
Host: eccas1635.ecc3.ford.com
accurev-ent ...
3
votes
3answers
55 views
How to merge same sizes of arrays to one array in Perl?
I have several arrays which have same size like below:
@m1= (1,1,0,1);
@m2= (0,1,1,1);
@m3= (0,1,1,0);
@m4= (1,1,0,0);
The question is how can I put it in one array like this?
@m = (
...
0
votes
2answers
54 views
How can I create a variable array name in Perl?
Array @p is a multiline array, e.g. $p[1] is the second line.
This code will explain what I want:
$size=@p; # line number of array @p
for($i=0; $i<$size; $i++)
{
@p{$i}= split(/ +/,$p[$i]);
...
0
votes
3answers
27 views
perl arrays in postgresql insert statement
I think i have a logical problem in my code. I have a mongodb with template,value,row,column. For example $record->{template} it's T1 and $record->{column} 1 and $record->{row} i have some dates ...
1
vote
1answer
63 views
How to search through array elements for match in hash keys in perl
I've an array that contains unique IDs (numeric) for DNA sequences. I've put my DNA sequences in a hash so that each key contains a descriptive header, and its value is the DNA sequence. Each header ...
2
votes
2answers
57 views
Perl: dereferencing an hash of hash of hashes
consider the sample code:
$VAR1 = {
'en' => {
'new' => {
'style' => 'defaultCaption',
'tts:fontStyle' => 'bold',
...
1
vote
3answers
80 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;
...
6
votes
3answers
144 views
What exactly mean the ${…} in the perl?
Thinking about the next. Have a LIST
qw(a b c);
now, assign the LIST into nameless (anonymous) ARRAY
[ qw(a b c) ]
so the next
use 5.016;
use warnings;
use diagnostics;
my $x = [ qw(a b c) ];
...
0
votes
2answers
42 views
want to display arrays of data in table using template file in perl
I have different arrays of data stored from my SQL :
push( @bugid,$bug_id);
push(@assign,$assignd_to);
push(@stat,$stats);
push(@res,$resol);
push(@rat,$rate);
push(@sev,$prior);
push(@op,$o_p);
...
0
votes
1answer
58 views
Indexing values from a file
I have a text file database that is structured like this (for each line) ID#VALUE1#VALUE2, here's how it looks like:
1#foo#bar
2#boo#tall
3#34h3s#kdfjf8
4#asdff34#fret45
For my purposes it would be ...
0
votes
1answer
43 views
inserting numeric results of a function into perl array using a for loop
i am new to perl and i want to do something similar to what i do in C.
for(i=0;i<32;i++)
{
array[i]= some_function_result();
}
and then print the array
and for doing this, what i am trying to do ...
-3
votes
2answers
51 views
Perl - searching for partial matches in string array and returning matching indices
Suppose I have a string array @file_paths which contains
@file_paths= ["C:\Lazy\FolderA\test.cpp", "C:\Lazy\FolderA\test2.cpp",
"C:\Lazy\FolderB\test.cpp", ...
0
votes
2answers
58 views
How to compare two fields from two arrays - Perl
I have two different arrays (@first, @second, for exemple) and I wanna compare $first[2] to $second[4]. If there is a match, then I'm gonna print some things. I'm new on Perl, and I thought this was ...
0
votes
1answer
51 views
How to put an array in hash of arrays without using its reference
I am using perl for my programming.
I stuck in a situation were there is a loop which intakes from a file and thus splits into a array named data i.e @data.
and i have an hash %hash for adding array ...
2
votes
1answer
73 views
How do I custom sort a 2D array in perl?
I have a 2D array which I create like this:
# i do this in a loop
push @{ $list[$array_index++] }, ($x[0], $x[1], $x[2], $y);
I tried writing the sort function for this array like this:
@sorted = ...
0
votes
3answers
73 views
deleting elements in array in a loop Perl
I want to make a loop where I go through all the elements in one array (@array1), and if the same element is found in another array (@array2), I want the value from a third array (@array3) with the ...
1
vote
3answers
43 views
Dynamical array as a class member
There is a following class:
package MyClass;
use strict;
use warnings;
sub new
{
my $class = shift();
my $self = {
_class_array => []
};
bless ($self, $class);
return ...
1
vote
3answers
97 views
Perl - Open large txt file on server and create / save into smaller files of 100 lines each
I am trying to do this:
I FTP a large file of single words (~144,000 and one word per line)
I need to open uploaded file and create files with 100 lines max one
word per line (01.txt, 02.txt etc).
I ...
0
votes
2answers
51 views
Printing an array variable displaying all its elements using main:: .
The @main::match_to_array prints out only the last element in the array @match_to_array , not the whole array.
I did my code with reference to this SO link.
The input HTML consists of
dmit@sp.com ...
2
votes
1answer
48 views
perl qw() function assigning lines instead of words
In Perl
@array=qw/this is a line
and a new one
then a new one
......
........./;
will result in each 'word' being assigned to the @array variables.
...
0
votes
1answer
50 views
How to move an array in JQuery into Perl
I'm looking for a way to move the numeric values in an array collected using JQuery into a new array for Perl to pick up. Is this possible and is there a preferred method?
JQuery Array: addVssID
...
0
votes
2answers
51 views
Match and do nothing if already exist
I need some help again please.
I am trying to create a list of items which I am calling from an Excel spreadsheet.
Let's say that columns A holds a list of countries.
America
South Africa
Belgium
...
3
votes
4answers
90 views
perl: sort an array, and change order of elements in another array in the same way as the sorted array
Suppose I have two arrays that look like this:
('1', '6', '8', '4', '5')
('a', 'c', 'd', 'f', 'w')
I want to sort the first array, and the order of elements in the second array should change in the ...
0
votes
1answer
64 views
Perl - threads join and system running out of memory
I posted couple of question for array and threads in my Perl code. Here is the code again.
Based on the suggestions, I made changes and it seemed to be working. Still the code is running into a new ...
-1
votes
1answer
47 views
array missing elements with a subroutine thread
A simple code either to be run in a thread or without thread. When run in a thread the processing doesn't process all the elements in the array. But when run without threading then it processes all ...
0
votes
2answers
69 views
Perl - Create a new array and pass it to a subroutine thread
I am trying to create a new multi-dimensional array of a certain length (5, for testing), fill it with values and then pass that array to a subroutine that runs in a thread separate from the main ...
0
votes
4answers
78 views
Perl: infinite loop array?
I need an infinite loop into finite array...
Example:
@name = ('John', 'Helen', 'Dave');
1=John
2=Helen
3=Dave
4=John
5=Helen
6=Dave
7=John
8=Helen
9=Dave
...etc
Is it possible?
Thanks
3
votes
2answers
102 views
Using Template Toolkit to tick a checkbox without using multiple loops
I'm using Template Toolkit and perl to generate a web page. I have an array with ID numbers in it that toggle checkboxes on and off, if that value exists in the array. I was wondering if there is a ...
0
votes
2answers
66 views
Slice arrays in Perl
I know there are easier ways to do this, but I must demonstrate removing the first seven lines of a system call (top -bn1) and write the results to a file using array slices. I currently am having ...
-1
votes
0answers
33 views
indexing a file from array of filehandlers
I am trying to write a string in a particular file indexed by an array of filehandlers in perl but I am not getting the string in file. The file every time remains blank. Kindly find my code below and ...
0
votes
1answer
61 views
Using Perl to get Checked and put VALUE in an array
I'm new to Perl and trying to check to see if a series of checkboxs on an HTML page are checked or not. Each checkbox has a different numeric value I want to add to an array in Perl. I keep getting an ...
0
votes
1answer
51 views
Comparison of two array elements and calculation
I have an issue with a section of code I wish to write. My problem is based around two arrays and the elements they encompass.
I have two arrays filled with numbers (relating to positions in a ...
1
vote
2answers
71 views
What data structure should I use to store a collection of .fasta headers?
I'm trying to write a perl programme that will split up a .fasta header:
gi|4140243|dbj|AB022087.1|_Xenopus_laevis_mRNA_for_cytochrome_P450,_complete_cds,_clone_MC1
Into its constituent parts:
gi
...
2
votes
3answers
77 views
How do I use an array of values to limit a for loop in perl?
The question is rather vague I know, but I hope the space to explain may help shed light, this is something I've wracked my brain around all day and couldn't find any advice through searching.
...
-1
votes
0answers
34 views
Perl reading a splitted Line and dynamically selecting position to read
Hello at all I have searched everywhere but I just dont know how to solve this Problem. I have a Postegre SQL Database in which I have to dynamically set the Index that has to been read so now I will ...
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' => {
...
3
votes
3answers
106 views
Hash of hashes: How to get the number of occurrences of a key?
I have the following text file.
foo1 bam
foo1 bam
foo2 bam
foo1 zip
foo2 boo
foo1 zip
foo3 zip
I would like to make a Hash of Hashes where KEY1 is column one, KEY2 is the ...
0
votes
1answer
58 views
Matching content between tags from RSS and inserting each match into an array - perl
I'm not sure how else to word what I want, so I'll just use examples for what I have and what I want.
I have:
my $rss = ("<item><title>this is a test title</title></item>
...
0
votes
2answers
53 views
Perl array splicing syntax
Why does the third print fail?
my @a = (0,1,2,3);
print @a[-@a..-2]; # works
print @a[0..2]; # works
print @a[0..-2]; # prints nothing
It's not clear to me the meaning of -@a is used in ...
0
votes
3answers
66 views
Accessing each hash member of array — Perl
I am trying to access each member of a hash I have stored in an array in Perl. I have already seen Looping through an array of hashes in Perl, and I need a better way to access them. My end result ...
1
vote
1answer
65 views
Dealing with hidden files when making an array of files inside a directory, using Perl
I am using Perl. I am making an array of files inside a directory. Hidden files, ones that begin with a dot, are at the beginning of my array. I want to actually ignore and skip over those, since I do ...
0
votes
5answers
80 views
Perl - Looping through known elements in a hash of hashes of arrays
I have a question I am hoping someone could help with... (simplified for the purposes of explaining my question).
I have the following hash of hashes of arrays (I think that is what it is anyway?) ...
9
votes
5answers
149 views
how does it works “$_ & 1” in perl
I am perl beginner, I am reading upon grep function to filter a list. I came across the following program.
#!/usr/bin/perl
use strict;
use warnings;
# initialize an array
my @array = qw(3 4 5 6 7 8 ...
1
vote
3answers
77 views
Tracking of number of elements in an array iterated?
Is there any way that number of elements iterated in an for loop can be traced in perl:
Like using special variables:
@arrayElements = (2,3,4,5,6,7,67);
foreach (@arrayElements) {
# Do something
...
2
votes
6answers
132 views
Perl - Check if any elements in each different array matches a variable
I have a problem I am hoping someone can help with (greatly simplified for the purposes of explaining what I am trying to do)...
I have three different arrays:
my @array1 = ("DOG","CAT","HAMSTER");
...

