my $magic = sub { my $textref = shift; $textref =~ s/!!!blargle!!!//g; }; #### my $magic = sub { my $textref = shift; # note the extra $ on the $textref var $$textref =~ s/!!!blargle!!!//g; };