--- Paul <[EMAIL PROTECTED]> wrote:
>  @ASCEBC{values %EBCASC} = keys %EBCASC; # flip for the compliment

Just an elaboration -- you can do this:

  @hash{ qw( a b c ) } = qw( 1 2 3 );

which should give you the same as:

  %hash = ( a => 1, b => 2, c => 3 );

Though the second one is a lot more readable, I think.
I would only recommend the first when evaluating expressions, as in the
EBCASC/ASCEBC example, above.

Also, my previous post was rife with typos, for whish I apologize. =o)

Paul

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

Reply via email to