NAME
Data::Object::Replace
ABSTRACT
Replace Class for Perl 5
SYNOPSIS
package main;
use Data::Object::Replace;
my $replace = Data::Object::Replace->new([
'(?^:(test))',
'this is a real event',
1,
[
10,
10
],
[
14,
14
],
{},
'this is a test'
]);
DESCRIPTION
This package provides methods for manipulating replace data.
INHERITS
This package inherits behaviors from:
INTEGRATES
This package integrates behaviors from:
LIBRARIES
This package uses type constraints from:
METHODS
This package implements the following methods:
captures
captures() : ArrayRef
The captures method returns the capture groups from the result object which contains information about the results of the regular expression operation.
count
count() : Num
The count method returns the number of match occurrences from the result object which contains information about the results of the regular expression operation.
initial
initial() : Str
The initial method returns the unaltered string from the result object which contains information about the results of the regular expression operation.
last_match_end
last_match_end() : Maybe[ArrayRef[Int]]
The last_match_end method returns an array of offset positions into the string where the capture(s) stopped matching from the result object which contains information about the results of the regular expression operation.
last_match_start
last_match_start() : Maybe[ArrayRef[Int]]
The last_match_start method returns an array of offset positions into the string where the capture(s) matched from the result object which contains information about the results of the regular expression operation.
matched
matched() : Maybe[Str]
The matched method returns the portion of the string that matched from the result object which contains information about the results of the regular expression operation.
named_captures
named_captures() : HashRef
The named_captures method returns a hash containing the requested named regular expressions and captured string pairs from the result object which contains information about the results of the regular expression operation.
postmatched
postmatched() : Maybe[Str]
The postmatched method returns the portion of the string after the regular expression matched from the result object which contains information about the results of the regular expression operation.
prematched
prematched() : Maybe[Str]
The prematched method returns the portion of the string before the regular expression matched from the result object which contains information about the results of the regular expression operation.
regexp
regexp() : RegexpRef
The regexp method returns the regular expression used to perform the match from the result object which contains information about the results of the regular expression operation.
string
string() : Str
The string method returns the string matched against the regular expression from the result object which contains information about the results of the regular expression operation.
AUTHOR
Al Newkirk, awncorp@cpan.org
LICENSE
Copyright (C) 2011-2019, Al Newkirk, et al.
This is free software; you can redistribute it and/or modify it under the terms of the The Apache License, Version 2.0, as elucidated in the "license file".