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

NAME

Regex::Object - solves problems with global Regex variables side effects.

VERSION

version 1.20

SYNOPSIS

    use Regex::Object;

    my $re = Regex::Object->new(regex  => qr/^\w{3}$/); # regex to match 3 letters words

    print "matched\n" if $re->match('foo')->success;  # prints matched
    print "matched\n" if $re->match('fooz')->success; # nothing

    ######## ---- ########
    # The main goal - both results have different named captured hashes

    $re = Regex::Object->new(regex  => qr/(?<name>\w+?) (?<surname>\w+)/); # named captures

    my $result1 = $re->match('John Doe');
    my $result2 = $re->match('Fill Anselmo');

    if ($result2->success) {
        my $name    = $result2->named_captures->{name};
        my $surname = $result2->named_captures->{surname};

        print "Name: $name; Surname: $surname\n";
    }

    if ($result1->success) {
        my $name    = $result1->named_captures->{name};
        my $surname = $result1->named_captures->{surname};

        print "Name: $name; Surname: $surname\n";
    }

    ######## ---- ########
    # Works with match regex

    my $re = Regex::Object->new;
    my @matches;

    while ('John Doe Eric Lide Hans Zimmermann' =~ /(?<name>\w+?) (?<surname>\w+)/g) {
        my $match = $re->collect;
        push @matches, $match;
    }

    ######## ---- ########
    # Global search for scoped regex without while loop

    $re = Regex::Object->new(regex  => qr/([A-Z]+?) ([A-Z]+)/i);
    my $matches = $re->match_all('John Doe Eric Lide Hans Zimmermann');

    print join "\040", $matches->match_all; # prints John Doe Eric Lide Hans Zimmermann

DESCRIPTION

This module was created for one certain goal: give you a level of isolation from perlre global variables.

The Regex::Object supports two approaches:

object scoped regex

qr// regex passed to constructor, so these modifiers could be used: m,s,i,x,xx,p,a,d,l,u,n.

global regex

collecting regex result vars from global match expression, (nothing passed to constructor).

More about Perl Regex: perlre.

Regex::Object METHODS

new(regex => $regex)

Constructor: accept one optional parameter - qr// regex and returns new instance.

    my $re = Regex::Object->new(regex  => qr/^\w{3}$/); # scoped qr regex
    my $re = Regex::Object->new; # to work with global match expression

regex()

Returns regex that was passed to constructor earlier.

    my $regex = $re->regex;

match($string)

Execute regex matching and returns Regex::Object::Match result DTO.

    my $result = $re->match('foo');

match_all($string)

Execute while loop on regex with g modifier and returns Regex::Object::Matches collection.

    my $matches = $re->match_all('John Doe Eric Lide');

collect()

Returns Regex::Object::Match result DTO filled with values from the nearest global match expression.

    $string =~ /(\w*)/
    my $result = $re->collect;

Regex::Object::Match METHODS

success()

Returns 1 if match succeeded or '' if not.

    my $is_success = $result->success;

prematch()

Returns string preceding whatever was matched by the last successful pattern match. $` equivalent.

    my $prematch = $result->prematch;

match()

Returns string matched by the last successful pattern match. $& equivalent

    my $match = $result->match;

postmatch()

Returns string following whatever was matched by the last successful pattern match. $' equivalent.

    my $postmatch = $result->postmatch;

last_paren_match()

Returns string matched by the highest used capture group of the last successful search pattern. $+ equivalent.

    my $last_paren_match = $result->last_paren_match;

captures()

Returns array ref contains of ($1, $2 ...) capture groups values.

    my $first_group = $result->captures->[0];

named_captures()

Returns hash ref of the named captures. %+ equivalent.

    my $name = $result->named_captures->{name};

named_captures_all()

Returns hash ref of the named captures all. %- equivalent.

    my $names_array_ref = $result->named_captures_all->{name};

Regex::Object::Matches METHODS

collection()

Returns array ref with all Regex::Object::Match objects

    my $first_match = $matches->collection->[0];

match_all()

Return array ref with all matches, i.e $MATCH[]

    my $match_all_array_ref = $matches->match_all;

captures_all()

Return array ref with all captures

    my $captures_all_array_ref = $matches->captures_all;

BUGS AND LIMITATIONS

If you find one, please let me know.

SOURCE CODE REPOSITORY

https://github.com/AlexP007/regex-object - fork or add pr.

AUTHOR

Alexander Panteleev <alexpan at cpan dot org>.

LICENSE AND COPYRIGHT

This software is copyright (c) 2022 by Alexander Panteleev. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.