
Regexp - Object Oriented interface to perl's regular expression code

use Regexp;
my $re = new Regexp q/Some Pattern/;
if (match $re "Some String") { ... }
$re->prematch
$re->postmatch
$re->pattern
my @info = $re->parentheses
my $count = $re->parentheses


Nick Ing-Simmons <nick@ni-s.u-net.com>