Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
7answers
694 views

foreach my $var (@list) — $var is a reference?

So, I never knew this and I want to get some clarifcation on it. I know if you do foreach (@list){ if you change $_ in that loop it will affect the actual data. But, I did not know that if you did ...
2
votes
3answers
303 views

Perl - pass code block as parameter inside parenthesis

Is it possible to pass a block of code to a sub using "parenthesis" syntax? I.e. when i write List::MoreUtils::any { defined ($_) } (undef, undef, 1); it works. But when i try to add parenthesis ...
1
vote
7answers
330 views

Perl for loop explanation

I'm looking through perl code and I see this: sub html_filter { my $text = shift; for ($text) { s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; ...