in reply to Another use bytes and length issue
(use bytes went beyond scope).Huh?
$ cat /tmp/p #!/usr/bin/perl -wl my $s = "\x{100}"; print length $s; { use bytes; print length $s; } print length $s; $ perl588 /tmp/p 1 2 1 $
Dave.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Another use bytes and length issue
by Burak (Chaplain) on Nov 06, 2006 at 21:56 UTC | |
by ikegami (Patriarch) on Nov 06, 2006 at 23:25 UTC | |
by BrowserUk (Patriarch) on Nov 06, 2006 at 22:41 UTC | |
by dk (Chaplain) on Nov 07, 2006 at 09:11 UTC |