Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^2: match two elements from an array in a row

by Kanji (Parson)
on Aug 17, 2007 at 01:45 UTC ( [id://633200]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if ($data[$i] =~ m/^(?:81|82)$/ && $data[$i] eq $data[$i+1]) {
    
  2. or download this
    my %wanted = map { $_, 1 } qw(
        81
    ...
    
    for my $i (0 .. ($#data - 1)) {
        if (exists $wanted{$data[$i]} && $data[$i] eq $data[$i+1]) {
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://633200]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-19 01:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found