NAME
Data::Object::Search
ABSTRACT
Data-Object Search Class
SYNOPSIS
use Data::Object::Search;
my $result = Data::Object::Search->new([
$regexp,
$altered_string,
$count,
$last_match_end,
$last_match_start,
$named_captures,
$initial_string
]);
DESCRIPTION
This package provides routines for introspecting the results of a regexp search operation.
INHERITANCE
This package inherits behaviors from:
LIBRARIES
This package uses type constraints defined by:
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 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.
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.
CREDITS
Al Newkirk, +319
Anthony Brummett, +10
Adam Hopkins, +2
José Joaquín Atria, +1
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 here, https://github.com/iamalnewkirk/do/blob/master/LICENSE.
PROJECT
SEE ALSO
To get the most out of this distribution, consider reading the following: