SparceMatrix
Technical User
I would like to be able to take this series of simple search-and-replaces and replace it with a single or fewer regular expressions. Is it possible? Or, is there a more economical way to handle a series of search and replaces?
Code:
#!/usr/bin/perl
$SampleString = "P1rs2*this*for*thrEE*diFF2r2nt*p1TT2rns";
$SampleString =~ s/\*/ /g;
$SampleString =~ s/1/a/g;
$SampleString =~ s/2/e/g;
$SampleString =~ s/((\w)\2)/\L$1\E/g;
print $SampleString;