Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
While working on a program, I was using some hashes in various places. Declaring it in one place with default data and appending to it at a later point.

My question is this: There is a "." operator for concatenation strings (scalars), correct? Is there any equivalent to this for hashes?

i.e.
my %hash = ( a => 'b' ); # do stuff %hash .= ( e => 'f', g => 'h', i => 'j' );
instead of the semi-tedious
$hash{'e'} = 'f'; $hash{'g'} = 'h'; $hash{'i'} = 'j';
or the seemingly ineffecient (?)
my @vals = qw( f h j ); my $i = 0; $hash{$_} = $vals[$i++] foreach qw( e g i );
also, how about combining hashes? If not, what method is best for this? Would it be prudent to overload operators to include this kind of functionality (., .=) for hashes?

This is mostly just to satisfy curiosity and, of course, to learn as much as possible :)

Thanks!
--------------
"But what of all those sweet words you spoke in private?"
"Oh that's just what we call pillow talk, baby, that's all."

In reply to Concerning hash operations (appending, concatenating) by RazorbladeBidet

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-23 16:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found