I needed a showing of choices in the drop down list according to some criterion (object status, in my case). So, I used an array slices instead use loop.I hope that this decision will be usefull somebody. ;)
my @list = ( [0, 'Zero'], [1, 'One'], [2, 'Two'], [3, 'Three'],
[4, 'Four'], [5, 'Five'], [6, 'Six'] );
SWITCH: for ($some_obj->get_status) {
/0/ && do { @list = @list[0, 6]; last; };
/1/ && do { @list = @list[0..2]; last; };
/2/ && do { @list = @list[2..5]; last; };
/3/ && do { @list = @list[3]; last; };
/4/ && do { @list = @list[4]; last; };
/5/ && do { @list = @list[2, 5]; last; };
/6/ && do { @list = @list[6]; last; };
@list = ();
}
$"=', ';
print "Result: status = ".$some_obj->get_status."; list=@list";
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.