# New Ticket Created by Aleksey Maksimov # Please include the string: [perl #32631] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=32631 >
Sample of incorrect function: $a=\"\\t\"; $a=~tr/0123456789/0123456789/cd; print $a; Output: 9 The problem persists for all characters between \\x00 and \\x09 inclusive. The output contains 0-9 digit that replaced \\x00-\\x09 code. By the way, tr/0-9//cd works as expected. # perl -v This is perl, v5.8.5 built for i386-freebsd <...> The problem is reproductable on all 3 builds of perl 5.8.5 I use in production. With best regards, Aleksey Maksimov.
