Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Hashes are fun!

by Jazz (Curate)
on Dec 16, 2001 at 12:20 UTC ( [id://132321]=note: print w/replies, xml ) Need Help??


in reply to Hashes are fun!

It looks like the @h{m,n,o} is using , as a regex delimiter (sneaky). It broke when trying to reformat for legibility.

%h = ( m=>1, n=>2, o=>3, ); # yields bareword error on 'o'; @h{ m, n, o } = ( 4, 5, 6 ); # yields m4n5o6 @h{ 'm', 'n', 'o' } = ( 4, 5, 6 ); # both yield m1n2o3 @h{ m,n,o } = ( 4, 5, 6 ); @h{ m|n|o } = ( 4, 5, 6 );

The hash slice is using a regex on nothing (undefined value). Of course there's no match so no new key can be generated and existing key values aren't changed.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://132321]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-20 00:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found