in reply to lt versus le in string comparision

Consider this:
my $str = 'y'; $str ++; print "$str\n"; $str ++; print "$str\n";
This will print
    z
    aa
Now, both z and aa are less or equal to z. It isn't until you reach za that you have a string that isn't less or equal to z.

Abigail