Alright, here's what I have:
$ref_to_all_lines_in_file # contains all lines in file minus those i
+n %hash or @array
@array; # contains some lines from the file
%hash; # contains array refs
$hash_count; # totals all arrays referenced in %hash
$array_count; # scalar(@array);
$ref
if($hash_count) { $ref = \%hash; }
elsif($array_count) { $ref = \@array; }
else { $ref = $ref_to_all_lines_in_file; }
so that works and all.. just thought it'd be neater to do a nested ternary operator like:
$ref = $hash_count ? \%hash : { $array_count ? \@array : $ref_to_all_l
+ines_in_file };
however, this doesn't seem to be working.. should it be possible to do this? or I am just high off the paint fumes meandering in from the construction on the other side of the wall? :)
-brad..
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.