Perl array grep


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Perl array grep
# 1  
Old 07-02-2008
Perl array grep

Hi,

I have the following array.

@a=( ["1","2"],["3","4"]);

and want to

push @a,(["5","6"])

if the 6 is not in the $a[0 .. $#a][1].

This is simplified out of a longer script but im trying for days now and get sick of it.

Can any of you help me on this.

Cheers
Markus
# 2  
Old 07-02-2008
There might be better ways - this is the first that came to mind.
Code:
map { grep(/6/, @$_) and $got=1 } @a;
push @a, (["6","6"]) unless $got;

Using a loop rather than map would allow you to break out of the loop as soon
as you see a 6, which might be more efficienti for a big array or a compilcated regexp.
Code:
foreach (@a){
   grep(/6/, @$_) and $got = 1 and last;
}

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

HELP on Perl array / sorting - trying to convert Korn Shell Script to Perl

Hi all, Not sure if this should be in the programming forum, but I believe it will get more response under the Shell Programming and Scripting FORUM. Am trying to write a customized df script in Perl and need some help with regards to using arrays and file handlers. At the moment am... (3 Replies)
Discussion started by: newbie_01
3 Replies

2. Shell Programming and Scripting

PERL : Read an array and write to another array with intial string pattern checks

I have an array and two variables as below, I need to check if $datevar is present in $filename. If so, i need to replace $filename with the values in the array. I need the output inside an ARRAY How can this be done. Any help will be appreciated. Thanks in advance. (2 Replies)
Discussion started by: irudayaraj
2 Replies

3. Shell Programming and Scripting

Array in Perl - Detect several file to be in one array

Hi everyone I have one question about using array in perl. let say I have several log file in one folder.. example test1.log test2.log test3.log and the list goes on.. how to make an array for this file? It suppose to detect log file in the current directory and all the log file will... (3 Replies)
Discussion started by: sayachop
3 Replies

4. Shell Programming and Scripting

perl, put one array into many array when field is equal to sth

Hi Everyone, #!/usr/bin/perl use strict; use warnings; my @test=("a;b;qqq;c;d","a;b;ggg;c;d","a;b;qqq;c;d"); would like to split the @test array into two array: @test1=(("a;b;qqq;c;d","a;b;qqq;c;d"); and @test2=("a;b;ggg;c;d"); means search for 3rd filed. Thanks find the... (0 Replies)
Discussion started by: jimmy_y
0 Replies

5. Shell Programming and Scripting

Perl grep array against array

Hi, Is there any way I can grep an array against another array? Basically here's what I need to do. There will be an array containing some fixed texts and I have to check whether some files contain these lines. Reading the same files over and over again for each different pattern doesnt seem... (1 Reply)
Discussion started by: King Nothing
1 Replies

6. Shell Programming and Scripting

perl -write values in a file to @array in perl

Hi can anyone suggest me how to write a file containing values,... say 19 20 21 22 .. 40 to an array @array = (19, 20, ... 40) -- Thanks (27 Replies)
Discussion started by: meghana
27 Replies

7. Shell Programming and Scripting

Need help to grep/awk into array

Hey guys, First post, I'm not a UNIX script guru and am trying to hack together something as a requirement ASAP. I have scanned the forums and Googled for this and have found similar issues but no usable solutions so I am hoping one of you guys can help me out. Basically I have a batch... (3 Replies)
Discussion started by: isawch
3 Replies

8. UNIX for Dummies Questions & Answers

Compare 2 array files using grep

Using the bash shell I am trying to read in 2 files. The first file (file1) is a list of names to search for in (file2). If a name in file1 is found in file2 I want the entire line in file2 to be printed to an output file. File1 consists of a single column of names. File2 consists of several... (2 Replies)
Discussion started by: lanna001
2 Replies

9. Shell Programming and Scripting

[Perl] Accessing array elements within a sed command in Perl script

I am trying to use a script to replace the header of each file, whose filename are stored within the array $test, using the sed command within a Perl script as follows: $count = 0; while ( $count < $#test ) { `sed -e 's/BIOGRF 321/BIOGRF 332/g' ${test} > 0`; `cat 0 >... (2 Replies)
Discussion started by: userix
2 Replies

10. Shell Programming and Scripting

grep in array -perl

hi all i have 2 array one is refernce array where as other array is generated from text file. array A has all letters from A-z and a-z and i want to find out which letters are missing in generated array and push them in another array to display them. i have following code .... for my $ref... (1 Reply)
Discussion started by: zedex
1 Replies
Login or Register to Ask a Question