in reply to How can I match between two integer numbers

Activestate has Komodo a nice IDE for Perl (and other languages). It has a handy "real time" Regular Expression tool, which I use quite a lot to fiddle with Regexes.

CountZero

"If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law

  • Comment on Re: How can I match between two integer numbers

Replies are listed 'Best First'.
Re: Re: How can I match between two integer numbers
by Fletch (Bishop) on Jan 02, 2003 at 17:05 UTC

    The original version is available from mjd's site as well.

    Personally I find that perl -de 0, setting $_, and incrementally piddling with x /foo(.*?)bar/ until I get something that matches works pretty well.