$Byte = substr($_[0],$i,1);
$Byte will contain a single character, but you want the ASCII code of that character. So, try:
$Byte = ord substr($_[0],$i,1);
I think:)
In reply to Re^5: Testing & Using Bits
by FunkyMonk
in thread Testing & Using Bits
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |