perl array matching between area code and no.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting perl array matching between area code and no.
# 1  
Old 08-05-2009
perl array matching between area code and no.

Hi Everyone,

I have:
Code:
my @No=qw(032106 032630 0380 034010 035110 0354801111);
my $str_No=join(';', @No);

I have a string $strA="03263033", so in order to determine this $strA area code matches with @No, I can do:
Code:
if ( (rindex($str_No,substr($strA,0,5))))== -1) ) {
print "Not exist.";
}

I have a string $strB="0380112", as we can see this area is just "0380", this strB is inside the @No. But at this time the substr is from 0 to 3.

But the problem is below:
my @No=qw(0321063033 0380112 03548011112) this list maybe 100+,1000+
It is imporssible to do it one by one, any simple perl way? Please advice.

Thanks
# 2  
Old 08-05-2009
The "area" you describe is not familiar to me. How do you know that 0380 is the area part of 0380112? Is it because it starts and ends with zero? If so, and the areas are of varying length, you can use a regexp to extract the area:

Code:
$n = '0380112';
($area) = $n =~ (/^(0[^0]+0)/);
print $area;

Then you can use $area to search over the list. I see no reason to join the list/array into a string to search it but you can if you wanted to for some reason I am not aware of.

---------- Post updated at 12:01 PM ---------- Previous update was at 11:50 AM ----------

Code:
my @No=qw(0321063033 0380112 03548011112);
my $n = '0380112';
my ($area) = $n =~ (/^(0[^0]+0)/);
my $flag = 1;
for (@No) {
   if (/^$area/) {
      $flag = 0;
      last;
   }
}
if ($flag) {
    print "$area not found\n";
}
else {
    print "$area found\n";
}


Last edited by KevinADC; 08-05-2009 at 03:04 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Perl/Array Sorting : Can someone please explain below code $h{$_}++

sub uniq { my %h; return grep { !$h{$_}++ } @_ } The above code is to remove duplicates from array. I am having hard time understanding below things (basically around highlighted code in bold)- when was the value inserted in hash? and are we only adding a key in Hash not... (1 Reply)
Discussion started by: Tanu
1 Replies

2. UNIX for Dummies Questions & Answers

Remove area code using from awk output

I am back again with one more question, so I have a phonebook file with names, phone#s for example: smith, joe 123-456-7890 using awk I want to display all entries with a specific area code. here 's what i have tried so far: awk '$2~/^123/ {print}' phonebook I can't figure... (1 Reply)
Discussion started by: Nirav4
1 Replies

3. 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

4. Shell Programming and Scripting

perl: array matching

Hi, I have two files like this file 1: xxtcgtatccgaggga cgcgcgggggagg jjsjjjjsjjjdtcgtat aaaaaaacccaaan ggtcgtatffaadda gggctggalllslllssdkk file 2: tcgtat gctggaI want to 1) match each element of file2 to each element of file1. 2) delete all the matched alphabets and subsequent... (3 Replies)
Discussion started by: polsum
3 Replies

5. 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

6. Shell Programming and Scripting

Hidden Characters in Regular Expression Matching Perl - Perl Newbie

I am completely new to perl programming. My father is helping me learn said programming language. However, I am stuck on one of the assignments he has given me, and I can't find very much help with it via google, either because I have a tiny attention span, or because I can be very very dense. ... (4 Replies)
Discussion started by: kittyluva2
4 Replies

7. Shell Programming and Scripting

Matching part of a string that is in an array

I am trying to do a comparison to see if these two string arrays match. I have tried assigning the array variable to another variable to get it to work but i can't figure it out. Here is what I have. #example of items that could be in the array #string="TEST"... (3 Replies)
Discussion started by: zatarra777
3 Replies

8. 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

9. Shell Programming and Scripting

Perl:Use of array elements in pattern matching

I need to use array elements while pattern matching. @myarr = (ELEM1, ELEM2, ELEM3); following is the statement which I am using in my code. Basically I want to replace the ELEM1/2/3 with other thing which is mentioned as REPL here. if (condition) { s/(ELEM1|ELEM2|ELEM3): REPL: /; } I... (3 Replies)
Discussion started by: deo_kaustubh
3 Replies

10. UNIX for Dummies Questions & Answers

matching each line in a column to an array

Hi, I have two files: file 1 has a list : ABC_1024 ABC_4507 ABC_5589 ERT_4389 DDB_5507 file 2 has an array: ABC_1011,ABC_1024,ABC_5670 DDB_4567 ERT_2345 January08 ABC_9099 DDB_9087 ERT_4567 March07 I need to go line by line in file 1... (2 Replies)
Discussion started by: greptastic
2 Replies
Login or Register to Ask a Question