Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: regex needed

by MZSanford (Curate)
on Jan 30, 2003 at 18:17 UTC ( [id://231399]=note: print w/replies, xml ) Need Help??


in reply to regex needed

You have the matcing correct, but you did not save any of the data you matched. You may want to take a look at the perlre man page, in praticular what parenthesis are for. Something like the follwing (untested) code :
while (<DATA>) { if ($_ =~ /^(\d+\s+\[\d+\.\d+\.\d+\.\d+\]\s+[\d+\.\d+\.\d+\.\d+\]) +/) { print "Match=$1\n"; } }

The addition of getting the field is an excersize left to the reader.


from the frivolous to the serious

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-18 03:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found