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

NAME

SPVM::Regex::Replacer - Interface Type for Regex Replacement Callback

SYNOPSYS

  use Regex::Replacer;
  use Regex;
  
  my $replacer = (Regex::Replacer)method : string ($re : Regex) {
    my $replaced_string_match = "AB" . $re->captures->[0] . "C";
    return $replaced_string_match;
  });
  
  my $string = "abc";
  my $re = Regex->new("ab(c)");
  my $replaced_string = $re->replace_all_cb($string, 0, $replacer);

DESCRIPTION

Regex::Replacer is the interface type for the regex replacement callback.

INTERFACE METHODS

  required method : string ($re : Regex)

The implementation must receive a Regex object and return the string after the replacement.