NAME
Data::Object::Replace
ABSTRACT
Data-Object Replace Class
SYNOPSIS
use Data::Object::Replace;
my $result = Data::Object::Replace->new([
$regexp,
$altered_string,
$count,
$last_match_end,
$last_match_start,
$named_captures,
$initial_string
]);
DESCRIPTION
Data::Object::Replace provides routines for introspecting the results of an operation involving a regular expressions. These methods work on data whose shape conforms to the tuple defined in the synopsis.
METHODS
This package implements the following methods.
captures
captures() : ArrayObject
The captures method returns the capture groups from the result object which contains information about the results of the regular expression operation.
count
count() : NumObject
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() : StrObject
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() : Any
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() : Any
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() : StrObject | UndefObject
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
name() : StrObject
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() : StrObject | UndefObject
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() : StrObject | UndefObject
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() : RegexpObject
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() : StrObject
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.
ROLES
This package inherits all behavior from the folowing role(s):
RULES
This package adheres to the requirements in the folowing rule(s):