Regular Expression Perl

$text = "hello there!";
print "$text\n";
$text =~ tr/d-za-c/a-z/;
print "$text\n";