I've created an array of anonymous hashes
to act as structures to hold data from some files
I'm working on parsing.
For various reasons, I need to add an element
into the middle of the array that is the same
as the one before it except for some minor
modifications.
I'd been doing this with:
my $new_element = $hash_array[$index];
Of course, I've noticed that this just
makes $new_element a reference to the same
anonymous hash.
What is the best way to make $new_element
be a reference to an anonymous hash with
the same data as the anonymous hash in
$hash_array
$index, so that I may
splice it in?
(Side question: When using splice and
replacing a run of 0 length, are new elements
put at the offset position, or after?)
Thanks in advance, wise Monks.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.