What bugs me most is that in Perl there is no equivalent for PHP's str_replace:
$newstr = str_replace( array('<', '>', '&'), array('<', '>',
'&'), $oldstr);
and...
> Arrays are hashes
Cool! U can use the same functions (language constructs) to treat both
"arrays" (integer indexing) and "hashes" (string indexing).
David.