http://www.perlmonks.org?node_id=983353


in reply to Regexp question,get 2nd match

Please clarify whether you want all the IP addresses on a line that contains an address on your 10.0.0 network or whether you only want to capture addresses on that network. Note that when you look for a line containing "10.0.0" you should quotemeta your $myip variable because the regex /10.0.0/ will also match 100000 and 10a0b0 since the dot will match any character.

Cheers,

JohnGG

Replies are listed 'Best First'.
Re^2: Regexp question,get 2nd match
by cztmonk (Monk) on Jul 24, 2012 at 10:27 UTC

    I want all IP addresses / ports who are accessing 10.0.0.z Thanks for the quotemeta tip, I did not know this one... Regards.