in reply to Flipin good, or a total flop?
Anyway, here are some examples. Better suggestions greatly encouraged.
$ cat data initial start interior end final $ # Include both endpoints $ perl -wlne'print if /start/../end/' data start interior end $ # Exclude starting point $ perl -wlne'print if ((/start/../end/) || 0) > 1' data interior end $ # Regex alternative for exclude starting point $ perl -wlne'print if (/start/../end/) =~ /^(?!1(?!\d))\d/' data interior end $ # Exclude ending point $ perl -wlne'print if (/start/../end/) =~ /^\d+$/' data start interior $ # Exclude both endpoints $ perl -wlne'print if (/start/../end/) =~ /^\d+(?<!^1)$/' data interior $ # or: $ perl -wlne'print if (/start/../end/) !~ /^1?$|E/' data interior
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Flipin good, or a total flop?
by bart (Canon) on Jan 25, 2006 at 22:25 UTC | |
by ysth (Canon) on Jan 26, 2006 at 03:25 UTC | |
by chibiryuu (Beadle) on Jan 27, 2006 at 21:53 UTC | |
|
Re^2: Flipin good, or a total flop?
by GrandFather (Saint) on Jan 25, 2006 at 11:19 UTC |