The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

re::override - Override Perl regular expressions

VERSION

This document describes version 0.01 of re::override, released March 10, 2006.

SYNOPSIS

    use re::override-pcre;

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

DESCRIPTION

This module provides a Perl interface to affect regular expression defined within its lexical scope.

Currently, only the PCRE flavour is supported.

AUTHORS

Mitchell N "putter" Charity, Audrey Tang

COPYRIGHT

Copyright 2006 by Audrey Tang <autrijus@autrijus.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.

See http://www.perl.com/perl/misc/Artistic.html