Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: regex needed

by OM_Zen (Scribe)
on Jan 30, 2003 at 20:52 UTC ( [id://231435]=note: print w/replies, xml ) Need Help??


in reply to regex needed

Hi ,

#1 [111.123.164.80] [123.126.126.126] 87 #000:00:00.0000.000.000 +0 #+6/07/2000 04:39:00 PM SNMP: Get # Guess you have to ( pattern ) to store and use it with $1 +,$2,$3 , in your code you match it but you do not store it and hence +print the line by itself if ($_ =~ /(\[.*\])\s+(\[.*\]).*(SNMP: Get$)/){ print "[$1] [$2] [$3]\n"; }


# $_ =~ s/(\[.*\]) #match within first [ #charachters inside it ] # \s+ #match a space after this # (\[.*\]).* #match again for the second [ #charachters inside it ] # (SNMP: Get$)/; #match the SNMP part of # the string # print "$1 $2 $3\n";


Log In?
Username:
Password:

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

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

    No recent polls found