Skip to content

Instantly share code, notes, and snippets.

@wchristian
Last active December 12, 2015 08:38
Show Gist options
  • Save wchristian/4745052 to your computer and use it in GitHub Desktop.
Save wchristian/4745052 to your computer and use it in GitHub Desktop.
use strictures 1;
use 5.010;
my $t = "ab";
my $r1 = qr/a/;
my $r2 = qr/b/;
my $s1 = "1";
my $s2 = "2";
$t =~ s/$r1/$s1/;
$t =~ s/$r2/$s2/;
say $t;
__END__
12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment