![]() |
|
Pathologically Eclectic Rubbish Lister | |
PerlMonks |
Re: Strange behaviour of an arrayby Prior Nacre V (Hermit) |
on Oct 04, 2004 at 11:32 UTC ( [id://396192]=note: print w/replies, xml ) | Need Help?? |
There are three possible problems here. Possibility 1 In the first case you have:
In the second you have:
Is this related to the problem? Also, you're not checking $2 here (as you are with the previous case). Possibility 2 You are relying on $_ being available and unchanged too deep in your code. Consider using this construct:
Possibility 3 Similarly, you are expecting values captured in one regex ($1, $2, etc.) to be available after another regex is evalualted. Immediately after the regex, you should either use the captured data straight away, or store the values for later use. The inclusion of test data and output results is usually helpful. Regards, PN5
In Section
Seekers of Perl Wisdom
|
|