Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^5: How regex works in array mode?

by JavaFan (Canon)
on Apr 26, 2012 at 10:02 UTC ( [id://967293]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use 5.010;
    my @lines = ("ip:192.168.243.1", "ip:192.168.243.2" =~
    ...
    __END__
    ip:192.168.243.1
    ip:192.168.243.2
    
  2. or download this
    my @lines;
    $lines[0] = "ip:192.168.243.1";
    push @lines, $1 if "ip:192.168.243.2" =~ /(ip:[0-9]{1,3}\.[0-9]{1,3}\.
    +[0-9]{1,3}\.[0-9]{1,3})/;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (6)
As of 2024-03-28 12:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found