in reply to Seeker of Regex Wisdom (strings which don't form specific patterns)
Assuming you just want to keep all the lines which have an IP address, or something very much looking an IP address, you might try something like this:
Of course, if you want to be more selective, you could check that the captures are smaller than 256:perl -ne 'print if /(\d{1,3}\.){3}\d{1,3}/;'
perl -ne 'print if /(\d{1,3}\.){3}(\d{1,3})/ and $1 < 256 and ... and +$4 < 256;'
Update: my code line above is wrong, as explained and shown below by AnomalousMonk: capture groups don't change their numbering under a counted quantifier.
It would have to be something like this:
but that's probably getting a bit too convoluted for a one-liner.perl -ne 'print if /(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/ and $1 + < 256 and ... and $4 < 256;'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Seeker of Regex Wisdom (strings which don't form specific patterns)
by Discipulus (Canon) on Aug 13, 2015 at 08:01 UTC | |
by AnomalousMonk (Archbishop) on Aug 13, 2015 at 09:01 UTC | |
by Laurent_R (Canon) on Aug 13, 2015 at 09:26 UTC | |
by AnomalousMonk (Archbishop) on Aug 13, 2015 at 10:04 UTC | |
by shmem (Chancellor) on Aug 13, 2015 at 12:29 UTC | |
by Laurent_R (Canon) on Aug 13, 2015 at 10:20 UTC |