NAME
re::engine::PCRE - Perl-compatible regular expressions
SYNOPSIS
use re::engine::PCRE;
if ("Hello, world" =~ /(?<=Hello|Hi), (world)/) {
print "Greetings, $1!";
}
DESCRIPTION
This module provides a Perl interface to use the libpcre library for regular expressions in its lexical scope.
AUTHORS
Audrey Tang
COPYRIGHT
Copyright 2006 by Audrey Tang <cpan@audreyt.org>.
The libpcre code bundled with this library by Philip Hazel, under a BSD-style license. See the LICENCE file for details.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.