http://www.perlmonks.org?node_id=76803


in reply to Re(3?): How many bugs can *you* find
in thread How many bugs can *you* find

Bugs in the bug fixes:
$contentTemp =~ y/[A-Za-z0-9_\n]//cd;
Uh, do you really want to leave brackets in the string? Or did you mean:
$contentTemp =~ y/A-Za-z0-9_\n//cd;

-- Randal L. Schwartz, Perl hacker