Ohhhh... well if you're just trying to see what someone else's data looks like, have you considered using
Data::Dumper instead? It makes something like that
very easy.
use Data::Dumper;
my %Volume_Info = ( alpha => [ 0, 512, 1048576, 1,
{ one => 'first_hash' },
[ 'two', 'first_array' ],
{ three => 'second_hash' },
-1, 0, 'zfod', 0 ],
beta => [ 1, 2, { four => 'third_hash' },
2, 1 ] );
print Dumper(\%Volume_Info);
...which produces...
$VAR1 = {
'beta' => [
1,
2,
{
'four' => 'third_hash'
},
2,
1
],
'alpha' => [
0,
512,
1048576,
1,
{
'one' => 'first_hash'
},
[
'two',
'first_array'
],
{
'three' => 'second_hash'
},
-1,
0,
'zfod',
0
]
};
Not sure if this fits your purposes, but I felt it was worth mentioning (especially after misleading you with my first response).
-Bird
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.