Why Use Regular Expressions?
Matching
if($plan =~ m/cunning/) { execute($plan); }
Substitution
$speech =~ s/short/vertically challenged/g;