Hello Respected Monks,
In my program I have two functions. Both are almost the same except that one extracts the value of $1 from the regex m/\s*(\S+)\s*(\S+)\s*(\S+)\s*(\S+)\s*/ and the other extracts the value of $2.
So I thought why not merge these into one function. and pass the column number which I want to extract as a parameter?
So I wrote code like
if ($columnNumber == 2)
{
push @sps, $2 if ($2);
}
elsif ($columnNumber == 3)
{
push @sps, $3 if ($3);
}
but I don't like this ifelse approach. Can't I do it shorter
by avoiding this if else?
Something like
push @sps, $($columnNumber) if ($($columnNumber));
So that the columnNumber automatically substitues itself inside the $1/$2/$3 expression.
But this code is wrong and doesn't even compile How can I make a variable substribute the 1 in $1.
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.