Tagged Questions

Version 5 of the Perl programming language.

learn more… | top users | synonyms

10
votes
2answers
200 views

How can I return context sensitive return values in Perl 6?

In the summary of differences between Perl 5 and Perl 6, it is noted that the wantarray function is gone: wantarray() is gone wantarray is gone. In Perl 6, context flows outwards, which ...
7
votes
2answers
208 views

Is Perl's -w switch for warnings deprecated after 5.6.x?

I read in Simon Cozens' book "Beginning Perl" that -w switch for warnings would be deprecated going forward. Is this true or is it still ok to continue using -w rather than "use warnings".
5
votes
1answer
93 views

Does anyone have experience with Perl5i?

I occasionally see Perl5i being mentioned. It looks great and make things easier. Some questions: Is this module compatible with other modules, e.g. Dancer, Mojolicious, XML::RSS, etc.? It it ...
4
votes
3answers
207 views

Splitting Code into Files in Perl

I just started with Perl a couple of days ago and my scripts are getting too long now. How do I split my code (procedural subs) into multiple Perl files and tell the interpreter to make sense of them? ...
2
votes
6answers
125 views

How can I loop over an array from the first occurence of an element with a specific value using perl?

I have an array like ("valueA", "valueB", "valueC", "valueD") etc. I want to loop over the values of the array starting from (for example) the first instance of "valueC". Everything in the array ...
2
votes
3answers
301 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 ...
2
votes
3answers
319 views

Is there an analogue of Ruby gsub method in Perl? [closed]

Possible Duplicate: How do I perform a Perl substitution on a string while keeping the original? How do I do one line replacements in Perl without modifying the string itself? I also want ...
0
votes
1answer
48 views

Moose throwing an error when trying to build a distribution with Dist::Zilla

Aloha, StackOverflow! I'n having a bit of trouble with building a Dist::Zilla distribution. Every time I try and build it, or really do anything (i.e., test, smoke, listdeps, whatever it is), I get ...
0
votes
1answer
200 views

CGI::escapeHTML() doesn't work

I am new to CGI, my code output: Hello, "<h1>Tom Cat</h1>"! Seems the escapeHTML() doesn't work. I develope my cgi code with XAMPP 1.7.2 on winxp. How can I fix it. Do I need ...