foreach (keys %clock_sheet)
{
$clk_name = $_;
print "$clock_sheet{$clk_name}\n";
}
print "$clock_sheet{$clk_name}_name\n";
###the print statement prints all the elements in an hasharray.
the same print statement i want to put outside of the foreach-loop still i need to get the all elements in the hash array how to do that?
i got one idea that is :#########
@clk_array = %clock_sheet;
print"@clk_array\_name\n";
when i'm printing the above @clk_array all the elements are coming twice i want to print only once,also the extension _name in the print statement is coming for the last element only..... i want the extension for each element
my output look like as clk1_name clk2_name clk3_name............. etc
the output i'm getting is
clk1 clk1 clk2 clk2 ....... clk4 clk4_name
help me about this case...............
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.