NAME

re::engine::RE2 - RE2 regex engine

SYNOPSIS

use re::engine::RE2;

if ("Hello, world" =~ /Hello, (world)/) {
    print "Greetings, $1!";
}

DESCRIPTION

Replaces / arguments perl's regex engine in a given lexical scope with RE2.

Rather under development, this is just to show it's possible!

See http://github.com/dgl/re-engine-RE2

AUTHORS

David Leadbeater <dgl[at]dgl[dot]cx>

COPYRIGHT

Copyright 2010 David Leadbeater.

Based on re::engine::PCRE:

Copyright 2007 Ævar Arnfjörð Bjarmason.

The original version was copyright 2006 Audrey Tang <cpan@audreyt.org> and Yves Orton.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.