Hi Monks, i'm newly registered but i've been using your site for ages. I write a lot of perl at a very basic level, (I use it for all my "data mining" at work) but i'm trying to improve my knowledge and write more concise, idiomatic code.
Anyway, i have an array, passed as reference. I want to make a new array from a slice of the referenced array, which contains only 1s or 0s depending on the value of the referenced array. In other words, i'm doing this:
my @cell_contents=map {
if ($_) {
1;
} else {
0;
} }@$array_ref[3..10];
So if the element of the referenced array, returns as true, i want the new array element to be 1, and 0 if it returns false.
Is there a more concise way of doing this?
Thanks in advance.
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.