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

Replies are listed 'Best First'.
Re: Re: Re(3?): How many bugs can *you* find
by turnstep (Parson) on May 01, 2001 at 04:30 UTC
    Oops! Yeah, that started as a substitution, but then I changed it to a transliteration and forgot to remove those brackets. :)