Joel wrote:
>
> From: "Rob Dixon" <[EMAIL PROTECTED]>
>
> > Tell us what platform you're on. It sounds a lot like DEC (Compaq) to me.
>
> I'm running windows XP actually.

I'm surprised! My XP does differently. Do you have an ANSI driver installed
for the command prompt? Try something like this:

  use strict;
  use warnings;

  foreach (map chr, 0x00 .. 0xFF) {
    print unless /[[:cntrl:]]/;
    print "\n" unless ord() % 32;
  }

What do you see?

Rob



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to