- or download this
$string =~ s/\Q$token\E/$date/;
- or download this
$test_string =~ s/\Q[A-Z]{3}\E([A-Z]{3})/$1/;
- or download this
my $token = quotemeta ( '[DATE:%Y-%m-%d]' );
- or download this
$string =~ s/$token/$date/;
- or download this
my $token = '\[DATE:%Y-%m-%d\]';
- or download this
$string =~ s/$token/$date/;