The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

re::engine::Oniguruma - Use the Oniguruma regex engine with Perl

SYNOPSIS

    use re::engine::Oniguruma;

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

DESCRIPTION

Replaces perl's regex engine in a given lexical scope with the Oniguruma engine.

See http://www.geocities.jp/kosako3/oniguruma/ for more information.

AUTHORS

Andy Armstrong <andy@hexten.net>

Most of the code was modified from re::engine::PCRE. Thanks to Ævar Arnfjörð Bjarmason for writing it an all his other regex related work.

COPYRIGHT

Copyright 2007, Andy Armstrong

Oniguruma is copyright 2002-2007, K.Kosako <sndgk393 AT ybb DOT ne DOT jp>

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

See onig/COPYING for details of Oniguruma's licence.