--- Nick Transier <[EMAIL PROTECTED]> wrote:
> Does anyone know a way to make boolean comparisons between strings?
> For example, I want 'a' < 'b' to be true, but perl says 'a' == 'b' is
> true.

Use the string comparators. =o)

'a' lt 'b'

'a' == 'b' is true because they're both zero.
'a' eq 'b' is false, because they're different letters.

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/

Reply via email to