Esteemed Monks -
Here is my humble question for the day: Perl permits to access variables whose names were created in some (possibly systematic) way in the way illustrated in the following example.
Example:
perl -le '$a1 = 3; $a2 = 4; $c = 2; print ${a . $c}'
returns the correct output '4'.
So here's my question: How can I obtain the list of all variables whose name matches a certain pattern? I am thinking of something analogous to globbing ('$a*') over variable names. Ideally, I would like to write code like
for ( @a )
{
print ${ $_ };
}
where
@a should hold the names of all variables starting with
$a, say, or mathing some other pattern of the variable name (not content!).
Did I explain this comprehensibly? And, if so, any help on this?
Cheers -
Pat
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.