NAME
SPVM::Regex::Replacer - a callback type for the regex replacement
SYNOPSYS
use Regex::Replacer;
my $replacer : Regex::Replacer = method : string ($re : Regex) {
return "AB" . $re->captures->[0] . "C";
});
my $re = Regex->new("ab(c)");
my $string_for_replace = $replacer->($re);
DESCRIPTION
Regex::Replacer is a callback type for the regex replacement.
CALLBACK METHOD
method : string ($re : Regex)
This method return the string after the replacement.
This method will be implemented as a anon method.