Hidden features of Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T03:34:46Z http://stackoverflow.com/feeds/question/161872 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/161872/hidden-features-of-perl 62 Hidden features of Perl? Adam Bellaire 2008-10-02T11:49:22Z 2009-11-05T16:21:50Z <p>What are some really useful but esoteric language features in Perl that you've actually been able to employ to do useful work?</p> <p>Guidelines:</p> <ul> <li>Try to limit answers to the Perl core and not CPAN</li> <li>Please give an example and a short description</li> </ul> <p><hr /></p> <h2>Hidden Features also found in other languages' Hidden Features:</h2> <p>(These are all from <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162257">Corion's answer</a>)</p> <ul> <li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c#">C#</a> <ul> <li>Duff's Device</li> <li>Portability and Standardness</li> <li>Quotes for whitespace delimited lists and strings</li> <li>Aliasable namespaces</li> </ul></li> <li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Java</a> <ul> <li>Static Initalizers</li> </ul></li> <li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">JavaScript</a> <ul> <li>Functions are First Class citizens</li> <li>Block scope and closure</li> <li>Calling methods and accessors indirectly through a variable</li> </ul></li> <li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Ruby</a> <ul> <li>Defining methods through code</li> </ul></li> <li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">PHP</a> <ul> <li>Pervasive online documentation</li> <li>Magic methods</li> <li>Symbolic references</li> </ul></li> <li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Python</a> <ul> <li>One line value swapping</li> <li>Ability to replace even core functions with your own functionality</li> </ul></li> </ul> <h2>Other Hidden Features:</h2> <p>Operators:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">The bool quasi-operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162058">The flip-flop operator</a> <ul> <li>Also used for <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627">list construction</a></li> </ul></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162004">The <code>++</code> and unary <code>-</code> operators work on strings</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162075">The repetition operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161943">The spaceship operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162239">The || operator (and // operator) to select from a set of choices</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162152">The diamond operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162249">Special cases of the <code>m//</code> operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162060">The tilde-tilde "operator"</a></li> </ul> <p>Quoting constructs:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416">The qw operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">Letters can be used as quote delimiters in q{}-like constructs</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163374">Quoting mechanisms</a></li> </ul> <p>Syntax and Names:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">There can be a space after a sigil</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">You can give subs numeric names with symbolic references</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416">Legal trailing commas</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Grouped Integer Literals</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#168925">hash slices</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#195254">Populating keys of a hash from an array</a></li> </ul> <p>Modules, Pragmas, and command-line options:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">use strict and use warnings</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">Taint checking</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162085">Esoteric use of -n and -p</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163541">CPAN</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601"><code>overload::constant</code></a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#164255">IO::Handle module</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163725">Safe compartments</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#310083">Attributes</a></li> </ul> <p>Variables:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162357">Autovivification</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161985">The <code>$[</code> variable</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#168947">tie</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#172118">Dynamic Scoping</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627">Variable swapping with a single statement</a></li> </ul> <p>Loops and flow control:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">Magic goto</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163481"><code>for</code> on a single variable</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#169592">continue clause</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104">Desperation mode</a></li> </ul> <p>Regular expressions:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162565">The <code>\G</code> anchor</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161976"><code>(?{})</code> and '(??{})` in regexes</a></li> </ul> <p>Other features:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">The debugger</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162206">Special code blocks such as BEGIN, CHECK, and END</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163700">The <code>DATA</code> block</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">New Block Operations</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Source Filters</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Signal Hooks</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#167309">map</a> (<a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#167809">twice</a>)</li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162842">Wrapping built-in functions</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#189883">The <code>eof</code> function</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#194796">The <code>dbmopen</code> function</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104">Turning warnings into errors</a></li> </ul> <p>Other tricks, and meta-answers:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163532">cat files, decompressing gzips if needed</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162271">Perl Tips</a></li> </ul> <p><hr /></p> <p><strong>See Also:</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c">Hidden features of C</a></li> <li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li> <li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden features of C++</a></li> <li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li> <li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden features of JavaScript</a></li> <li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Hidden features of Ruby</a></li> <li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">Hidden features of PHP</a></li> <li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li> </ul> http://stackoverflow.com/questions/161872/hidden-features-of-perl/161943#161943 12 Answer by Sec for Hidden features of Perl? Sec 2008-10-02T12:09:33Z 2008-10-02T12:09:33Z <p>Let's start easy with the <a href="http://en.wikipedia.org/wiki/Spaceship_operator" rel="nofollow">Spaceship Operator</a>.</p> <pre><code>$a = 5 &lt;=&gt; 7; # $a is set to -1 $a = 7 &lt;=&gt; 5; # $a is set to 1 $a = 6 &lt;=&gt; 6; # $a is set to 0 </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/161976#161976 11 Answer by Leon Timmermans for Hidden features of Perl? Leon Timmermans 2008-10-02T12:19:21Z 2009-08-23T21:53:59Z <p>My vote would go for the (?{}) and (??{}) groups in Perl's regular expressions. The first executes Perl code, ignoring the return value, the second executes code, using the return value as a regular expression.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/161985#161985 5 Answer by Sec for Hidden features of Perl? Sec 2008-10-02T12:21:46Z 2009-08-23T22:00:50Z <p>There also is $[ the variable which decides at which index an array starts. Default is 0 so an array is starting at 0. By setting </p> <pre><code>$[=1; </code></pre> <p>You can make Perl behave more like <a href="http://en.wikipedia.org/wiki/AWK" rel="nofollow">AWK</a> (or Fortran) if you really want to.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162004#162004 22 Answer by Leon Timmermans for Hidden features of Perl? Leon Timmermans 2008-10-02T12:26:31Z 2008-10-02T12:26:31Z <p>The operators ++ and unary - don't only work on numbers, but also on strings. </p> <pre><code>my $_ = "a" print -$_ </code></pre> <p>prints <em>-a</em></p> <pre><code>print ++$_ </code></pre> <p>prints <em>b</em></p> <pre><code>$_ = 'z' print ++$_ </code></pre> <p>prints <em>aa</em></p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162058#162058 29 Answer by John Siracusa for Hidden features of Perl? John Siracusa 2008-10-02T12:41:44Z 2008-10-02T12:41:44Z <p>The flip-flop operator is useful for skipping the first iteration when looping through the records (usually lines) returned by a file handle, without using a flag variable:</p> <pre><code>while(&lt;$fh&gt;) { next if 1..1; # skip first record ... } </code></pre> <p>Run <code>perldoc perlop</code> and search for "flip-flop" for more information and examples.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162060#162060 5 Answer by Sec for Hidden features of Perl? Sec 2008-10-02T12:42:14Z 2008-10-02T12:42:14Z <p>A bit obscure is the tilde-tilde "operator" which forces scalar context.</p> <pre><code>print ~~ localtime; </code></pre> <p>is the same as</p> <pre><code>print scalar localtime; </code></pre> <p>and different from</p> <pre><code>print localtime; </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162075#162075 17 Answer by Bruno De Fraine for Hidden features of Perl? Bruno De Fraine 2008-10-02T12:45:51Z 2008-10-02T12:45:51Z <p>Binary "x" is the <a href="http://perldoc.perl.org/perlop.html#Multiplicative-Operators" rel="nofollow">repetition operator</a>:</p> <pre><code>print '-' x 80; # print row of dashes </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162085#162085 11 Answer by Sec for Hidden features of Perl? Sec 2008-10-02T12:48:32Z 2008-10-09T13:44:22Z <p>Based on the way the <code>"-n"</code> and <code>"-p"</code> switches are implemented in Perl 5, you can write a seemingly incorrect program including <code>}{</code>:</p> <pre><code>ls |perl -lne 'print $_; }{ print "$. Files"' </code></pre> <p>which is converted internally to this code:</p> <pre><code>LINE: while (defined($_ = &lt;ARGV&gt;)) { print $_; }{ print "$. Files"; } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162094#162094 25 Answer by moritz for Hidden features of Perl? moritz 2008-10-02T12:50:58Z 2009-08-23T21:39:45Z <p>There are many non-obvious features in Perl.</p> <p>For example, did you know that there can be a space after a sigil?</p> <pre><code> $ perl -wle 'my $x = 3; print $ x' 3 </code></pre> <p>Or that you can give subs numeric names if you use symbolic references?</p> <pre><code>$ perl -lwe '*4 = sub { print "yes" }; 4-&gt;()' yes </code></pre> <p>There's also the "bool" quasi operator, that return 1 for true expressions and the empty string for false:</p> <pre><code>$ perl -wle 'print !!4' 1 $ perl -wle 'print !!"0 but true"' 1 $ perl -wle 'print !!0' (empty line) </code></pre> <p>Other interesting stuff: with <code>use overload</code> you can overload string literals and numbers (and for example make them BigInts or whatever).</p> <p>Many of these things are actually documented somewhere, or follow logically from the documented features, but nonetheless some are not very well known.</p> <p><em>Update</em>: Another nice one. Below the <code>q{...}</code> quoting constructs were mentioned, but did you know that you can use letters as delimiters?</p> <pre><code>$ perl -Mstrict -wle 'print q bJet another perl hacker.b' Jet another perl hacker. </code></pre> <p>Likewise you can write regular expressions:</p> <pre><code>m xabcx # same as m/abc/ </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162152#162152 8 Answer by spoulson for Hidden features of Perl? spoulson 2008-10-02T13:06:18Z 2008-10-02T13:06:18Z <p>The null filehandle <a href="http://perldoc.perl.org/perlop.html#I%2fO-Operators" rel="nofollow">diamond operator</a> <code>&lt;&gt;</code> has its place in building command line tools. It acts like <code>&lt;FH&gt;</code> to read from a handle, except that it magically selects whichever is found first: command line filenames or STDIN. Taken from perlop:</p> <pre><code>while (&lt;&gt;) { ... # code for each line } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162206#162206 9 Answer by Bruno De Fraine for Hidden features of Perl? Bruno De Fraine 2008-10-02T13:16:24Z 2008-10-02T13:26:30Z <p><a href="http://perldoc.perl.org/perlmod.html#BEGIN%2c-UNITCHECK%2c-CHECK%2c-INIT-and-END" rel="nofollow">Special code blocks</a> such as <code>BEGIN</code>, <code>CHECK</code> and <code>END</code>. They come from Awk, but work differently in Perl, because it is not record-based.</p> <p>The <code>BEGIN</code> block can be used to specify some code for the parsing phase; it is also executed when you do the syntax-and-variable-check <code>perl -c</code>. For example, to load in configuration variables:</p> <pre><code>BEGIN { eval { require 'config.local.pl'; }; if ($@) { require 'config.default.pl'; } } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162239#162239 20 Answer by pjf for Hidden features of Perl? pjf 2008-10-02T13:23:29Z 2009-08-23T21:41:30Z <p>One of my favourite features in Perl is using the boolean <code>||</code> operator to select between a set of choices.</p> <pre><code> $x = $a || $b; # $x = $a, if $a is true. # $x = $b, otherwise </code></pre> <p>This means one can write:</p> <pre><code> $x = $a || $b || $c || 0; </code></pre> <p>to take the first true value from <code>$a</code>, <code>$b</code>, and <code>$c</code>, or a default of <code>0</code> otherwise.</p> <p>In Perl 5.10, there's also the <code>//</code> operator, which returns the left hand side if it's defined, and the right hand side otherwise. The following selects the first <em>defined</em> value from <code>$a</code>, <code>$b</code>, <code>$c</code>, or <code>0</code> otherwise:</p> <pre><code> $x = $a // $b // $c // 0; </code></pre> <p>These can also be used with their short-hand forms, which are very useful for providing defaults:</p> <pre><code> $x ||= 0; # If $x was false, it now has a value of 0. $x //= 0; # If $x was undefined, it now has a value of zero. </code></pre> <p>Cheerio,</p> <p><em>Paul</em></p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162249#162249 7 Answer by Michael Carman for Hidden features of Perl? Michael Carman 2008-10-02T13:25:59Z 2008-10-02T13:25:59Z <p>The <code>m//</code> operator has some obscure special cases:</p> <ul> <li>If you use <code>?</code> as the delimeter it only matches once unless you call <code>reset</code>.</li> <li>If you use <code>'</code> as the delimeter the pattern is not interpolated.</li> <li>If the pattern is empty it uses the pattern from the last successful match.</li> </ul> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162257#162257 30 Answer by Corion for Hidden features of Perl? Corion 2008-10-02T13:27:11Z 2008-10-09T11:38:45Z <p>As Perl has almost all "esoteric" parts from the other lists, I'll tell you the one thing that Perl can't:</p> <p>The one thing Perl can't do is have bare arbitrary URLs in your code, because the <code>//</code> operator is used for regular expressions.</p> <p>Just in case it wasn't obvious to you what features Perl offers, here's a selective list of the maybe not totally obvious entries:</p> <p><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c#132274">Duff's Device - <a href="http://perlmonks.org/?node=388976" rel="nofollow">in Perl</a></p> <p><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c#132269">Portability and Standardness</a> - <a href="http://activestate.com" rel="nofollow">There are likely more computers with Perl than with a C compiler</a></p> <p><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c#9401">A file/path manipulation class</a> - <a href="http://search.cpan.org/perldoc?File::Find" rel="nofollow">File::Find works on even more operating systems than .Net does</a></p> <p><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c#9406">Quotes for whitespace delimited lists</a> <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c#9114">and strings</a> - <a href="http://perldoc.org/perlop.html" rel="nofollow">Perl allows you to choose almost arbitrary quotes for your list and string delimiters</a></p> <p><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c#78484">Aliasable namespaces</a> - Perl has these through glob assignments: </p> <pre><code>*My::Namespace:: = \%Your::Namespace </code></pre> <p><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java#47493">Static initializers</a> - Perl can run code in almost every phase of compilation and object instantiation, from <code>BEGIN</code> (code parse) to <code>CHECK</code> (after code parse) to <code>import</code> (at module import) to <code>new</code> (object instantiation) to <code>DESTROY</code> (object destruction) to <code>END</code> (program exit)</p> <p><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript#61094">Functions are First Class citizens</a> - just like in Perl</p> <p><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript#61173">Block scope and closure</a> - Perl has both</p> <p><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript#61125">Calling methods and accessors indirectly through a variable</a> - Perl does that too:</p> <pre><code>my $method = 'foo'; my $obj = My::Class-&gt;new(); $obj-&gt;$method( 'baz' ); # calls $obj-&gt;foo( 'baz' ) </code></pre> <p><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby#64080">Defining methods through code</a> - <a href="http://perldoc.perl.org/functions/sub.html" rel="nofollow">Perl allows that too</a>:</p> <pre><code>*foo = sub { print "Hello world" }; </code></pre> <p><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php#61491">Pervasive online documentation</a> - <a href="http://perldoc.com/" rel="nofollow">Perl documentation is online and likely on your system too</a></p> <p><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php#61482">Magic methods</a> that get called whenever you call a "nonexisting" function - Perl implements that in the AUTOLOAD function</a></p> <p><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php#62525">Symbolic references</a> - you are well advised to stay away from these. <a href="http://perl.plover.com/varvarname.html" rel="nofollow">They will eat your children.</a> But of course, Perl allows you to offer your children to blood-thirsty demons.</p> <p><a href="http:// http://stackoverflow.com/questions/161872/hidden-features-of-perl/162271#162271 16 Answer by pjf for Hidden features of Perl? pjf 2008-10-02T13:30:52Z 2008-10-02T13:30:52Z <p>This is a meta-answer, but the <a href="http://perltraining.com.au/tips/" rel="nofollow">Perl Tips</a> archives contain all sorts of interesting tricks that can be done with Perl. The archive of previous tips is on-line for browsing, and can be subscribed to via mailing list or atom feed.</p> <p>Some of my favourite tips include <a href="http://perltraining.com.au/tips/2008-05-23.html" rel="nofollow">building executables with PAR</a>, <a href="http://perltraining.com.au/tips/2008-08-20.html" rel="nofollow">using autodie to throw exceptions automatically</a>, and the use of the <a href="http://perltraining.com.au/tips/2008-03-12.html" rel="nofollow">switch</a> and <a href="http://perltraining.com.au/tips/2008-04-18.html" rel="nofollow">smart-match</a> constructs in Perl 5.10.</p> <p><em>Disclosure:</em> I'm one of the authors and maintainers of Perl Tips, so I obviously think very highly of them. ;)</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162357#162357 22 Answer by J.J. for Hidden features of Perl? J.J. 2008-10-02T13:48:56Z 2008-10-02T13:48:56Z <p><a href="http://en.wikipedia.org/wiki/Autovivification" rel="nofollow">Autovivification</a>. AFAIK <strong>no other language has it</strong>.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162565#162565 11 Answer by J.J. for Hidden features of Perl? J.J. 2008-10-02T14:25:00Z 2008-10-02T14:25:00Z <pre><code>while(/\G(\b\w*\b)/g) { print "$1\n"; } </code></pre> <p>the \G anchor. It's <strong>hot</strong>.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162601#162601 13 Answer by Axeman for Hidden features of Perl? Axeman 2008-10-02T14:31:18Z 2009-08-23T21:53:26Z <h3>New Block Operations</h3> <p>I'd say the ability to expand the language, creating pseudo block operations is one.</p> <ol> <li><p>You declare the prototype for a sub indicating that it takes a code reference first:</p> <pre><code>sub do_stuff_with_a_hash (&amp;\%) { my ( $block_of_code, $hash_ref ) = @_; while ( my ( $k, $v ) = each %$hash_ref ) { $block_of_code-&gt;( $k, $v ); } } </code></pre></li> <li><p>You can then call it in the body like so </p> <pre><code>use Data::Dumper; do_stuff_with_a_hash { local $Data::Dumper::Terse = 1; my ( $k, $v ) = @_; say qq(Hey, the key is "$k"!); say sprintf qq(Hey, the value is "%v"!), Dumper( $v ); } %stuff_for ; </code></pre></li> </ol> <p>(<code>Data::Dumper::Dumper</code> is another semi-hidden gem.) Notice how you don't need the <code>sub</code> keyword in front of the block, or the comma before the hash. It ends up looking a lot like: <code>map { } @list</code></p> <h3>Source Filters</h3> <p>Also, there are source filters. Where Perl will pass you the code so you can manipulate it. Both this, and the block operations, are pretty much don't-try-this-at-home type of things. </p> <p>I have done some neat things with source filters, for example like creating a very simple language to check the time, allowing short Perl one-liners for some decision making:</p> <pre><code>perl -MLib::DB -MLib::TL -e 'run_expensive_database_delete() if $hour_of_day &lt; AM_7'; </code></pre> <p><code>Lib::TL</code> would just scan for both the "variables" and the constants, create them and substitute them as needed. </p> <p>Again, source filters can be messy, but are powerful. But they can mess debuggers up something terrible--and even warnings can be printed with the wrong line numbers. I stopped using Damian's <a href="http://search.cpan.org/perldoc?Switch" rel="nofollow">Switch</a> because the debugger would lose all ability to tell me where I really was. But I've found that you can minimize the damage by modifying small sections of code, keeping them on the same line. </p> <h3>Signal Hooks</h3> <p>It's often enough done, but it's not all that obvious. Here's a die handler that piggy backs on the old one. </p> <pre><code>my $old_die_handler = $SIG{__DIE__}; $SIG{__DIE__} = sub { say q(Hey! I'm DYIN' over here!); goto &amp;$old_die_handler; } ; </code></pre> <p>That means whenever some other module in the code wants to die, they gotta come to you (unless someone else does a destructive overwrite on <code>$SIG{__DIE__}</code>). And you can be notified that somebody things something is an error. </p> <p>Of course, for enough things you can just use an <code>END { }</code> block, if all you want to do is clean up. </p> <h3><code>overload::constant</code></h3> <p>You can inspect literals of a certain type in packages that include your module. For example, if you use this in your <code>import</code> sub:</p> <pre><code>overload::constant integer =&gt; sub { my $lit = shift; return $lit &gt; 2_000_000_000 ? Math::BigInt-&gt;new( $lit ) : $lit }; </code></pre> <p>it will mean that every integer greater than 2 billion in the calling packages will get changed to a <code>Math::BigInt</code> object. (See <a href="http://search.cpan.org/perldoc?overload#Overloading%5Fconstants" rel="nofollow">overload::constant</a>).</p> <h3>Grouped Integer Literals</h3> <p>While we're at it. Perl allows you to break up large numbers into groups of three digits and still get a parsable integer out of it. Note <code>2_000_000_000</code> above for 2 billion. </p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162842#162842 1 Answer by J.J. for Hidden features of Perl? J.J. 2008-10-02T15:04:15Z 2009-08-25T00:05:46Z <p>Axeman reminded me of how easy it is to wrap some of the built-in functions.</p> <p>Before Perl 5.10 Perl didn't have a pretty print(say) like Python.</p> <p>So in your local program you could do something like:</p> <pre><code>sub print { print @_, "\n"; } </code></pre> <p>or add in some debug.</p> <pre><code>sub print { exists $ENV{DEVELOPER} ? print Dumper(@_) : print @_; } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163374#163374 17 Answer by Robert P for Hidden features of Perl? Robert P 2008-10-02T16:43:04Z 2009-08-23T21:47:27Z <p>It's simple to quote almost any kind of strange string in Perl.</p> <pre><code>my $url = q{http://my.url.com/any/arbitrary/path/in/the/url.html}; </code></pre> <p>In fact, the various quoting mechanisms in Perl are quite interesting. The Perl regex-like quoting mechanisms allow you to quote anything, specifying the delimiters. You can use almost any special character like #, /, or open/close characters like (), [], or {}. Examples:</p> <pre><code>my $var = q#some string where the pound is the final escape.#; my $var2 = q{A more pleasant way of escaping.}; my $var3 = q(Others prefer parens as the quote mechanism.); </code></pre> <p>Quoting mechanisms:</p> <p>q : literal quote; only character that needs to be escaped is the end character. qq : an interpreted quote; processes variables and escape characters. Great for strings that you need to quote:</p> <pre><code>my $var4 = qq{This "$mechanism" is broken. Please inform "$user" at "$email" about it.}; </code></pre> <p>qx : Works like qq, but then executes it as a system command, non interactively. Returns all the text generated from the standard out. (Redirection, if supported in the OS, also comes out) Also done with back quotes (the ` character).</p> <pre><code>my $output = qx{type "$path"}; # get just the output my $moreout = qx{type "$path" 2&gt;&amp;1}; # get stuff on stderr too </code></pre> <p>qr : Interprets like qq, but then compiles it as a regular expression. Works with the various options on the regex as well. You can now pass the regex around as a variable:</p> <pre><code>sub MyRegexCheck { my ($string, $regex) = @_; if ($string) { return ($string =~ $regex); } return; # returns 'null' or 'empty' in every context } my $regex = qr{http://[\w]\.com/([\w]+/)+}; @results = MyRegexCheck(q{http://myurl.com/subpath1/subpath2/}, $regex); </code></pre> <p>qw : A very, very useful quote operator. Turns a quoted set of whitespace separated words into a list. Great for filling in data in a unit test.</p> <pre><code> my @allowed = qw(A B C D E F G H I J K L M N O P Q R S T U V W X Y Z { }); my @badwords = qw(WORD1 word2 word3 word4); my @numbers = qw(one two three four 5 six seven); # works with numbers too my @list = ('string with space', qw(eight nine), "a $var"); # works in other lists my $arrayref = [ qw(and it works in arrays too) ]; </code></pre> <p>They're great to use them whenever it makes things clearer. For qx, qq, and q, I most likely use the {} operators. The most common habit of people using qw is usually the () operator, but sometimes you also see qw//.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163416#163416 18 Answer by dland for Hidden features of Perl? dland 2008-10-02T16:54:51Z 2008-10-02T16:54:51Z <p>The quoteword operator is one of my favourite things. Compare:</p> <pre><code>my @list = ('abc', 'def', 'ghi', 'jkl'); </code></pre> <p>and</p> <pre><code>my @list = qw(abc def ghi jkl); </code></pre> <p>Much less noise, easier on the eye. Another really nice thing about Perl, that one really misses when writing SQL, is that a trailing comma is legal:</p> <pre><code>print 1, 2, 3, ; </code></pre> <p>That looks odd, but not if you indent the code another way:</p> <pre><code>print results_of_foo(), results_of_xyzzy(), results_of_quux(), ; </code></pre> <p>Adding an additional argument to the function call does not require you to fiddle around with commas on previous or trailing lines. The single line change has no impact on its surrounding lines.</p> <p>This makes it very pleasant to work with variadic functions. This is perhaps one of the most under-rated features of Perl.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163440#163440 15 Answer by Glomek for Hidden features of Perl? Glomek 2008-10-02T17:00:49Z 2009-02-23T06:53:31Z <p>Taint checking. With taint checking enabled, perl will die (or warn, with <code>-t</code>) if you try to pass tainted data (roughly speaking, data from outside the program) to an unsafe function (opening a file, running an external command, etc.). It is very helpful when writing setuid scripts or CGIs or anything where the script has greater privileges than the person feeding it data.</p> <p>Magic goto. "goto &amp;sub" does an optimized tail call.</p> <p>The debugger.</p> <p>"use strict" and "use warnings". These can save you from a bunch of typos.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163481#163481 18 Answer by timkay for Hidden features of Perl? timkay 2008-10-02T17:11:11Z 2009-08-23T21:43:58Z <p>The "for" statement can be used the same way "with" is used in Pascal:</p> <pre><code>for ($item) { s/&amp;‎nbsp;/ /g; s/&lt;.*?&gt;/ /g; $_ = join(" ", split(" ", $_)); } </code></pre> <p>You can apply a sequence of s/// operations, etc. to the same variable without having to repeat the variable name.</p> <p>NOTE: the non-breaking space above (&amp;‎nbsp;) has hidden Unicode in it to circumvent the Markdown. Don't copy paste it :)</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163488#163488 7 Answer by timkay for Hidden features of Perl? timkay 2008-10-02T17:12:40Z 2008-10-02T17:12:40Z <pre><code>rename("$_.part", $_) for "data.txt"; </code></pre> <p>renames data.txt.part to data.txt without having to repeat myself.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163498#163498 6 Answer by timkay for Hidden features of Perl? timkay 2008-10-02T17:15:17Z 2009-02-13T18:53:32Z <pre><code>sub load_file { local(@ARGV, $/) = shift; &lt;&gt;; } </code></pre> <p>and a version that returns an array as appropriate:</p> <pre><code>sub load_file { local @ARGV = shift; local $/ = wantarray? $/: undef; &lt;&gt;; } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163532#163532 25 Answer by timkay for Hidden features of Perl? timkay 2008-10-02T17:23:05Z 2009-07-31T10:32:33Z <p>Add support for compressed files:</p> <pre><code>s/.*\.gz$/zcat "$_" \|/ for @ARGV; </code></pre> <p><em>(quotes around $_ necessary to handle filenames with spaces in)</em></p> <p>Now the &lt;> feature will decompress any @ARGV files that end with .gz.</p> <pre><code>while (&lt;&gt;) { print; } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163541#163541 17 Answer by mpeters for Hidden features of Perl? mpeters 2008-10-02T17:25:18Z 2009-03-18T23:26:31Z <p>Not really hidden, but many every day Perl programmers don't know about <a href="http://search.cpan.org" rel="nofollow">CPAN</a>. This especially applies to people who aren't full time programmers or don't program in Perl full time.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163700#163700 18 Answer by allan for Hidden features of Perl? allan 2008-10-02T17:57:38Z 2009-08-23T21:42:09Z <p>The ability to parse data directly pasted into a <strong>DATA</strong> block. No need to save to a test file to be opened in the program or similar. For example:</p> <pre><code>my @lines = &lt;DATA&gt;; for (@lines) { print if /bad/; } __DATA__ some good data some bad data more good data more good data </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163725#163725 5 Answer by melo for Hidden features of Perl? melo 2008-10-02T18:03:06Z 2008-10-02T18:03:06Z <p>Safe compartments.</p> <p>With the Safe module you can build your own sandbox-style environment using nothing but perl. You would then be able to load perl scripts into the sandbox.</p> <p>Best regards,</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/164217#164217 1 Answer by Toby for Hidden features of Perl? Toby 2008-10-02T19:48:08Z 2008-10-02T19:48:08Z <p>@<a href="#162257" rel="nofollow">Corion </a>- Bare URLs in Perl? Of course you can, even in interpolated strings. The only time it would matter is in a string that you were actually USING as a regular expression.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/164255#164255 5 Answer by Alexandr Ciornii for Hidden features of Perl? Alexandr Ciornii 2008-10-02T19:53:54Z 2009-08-06T21:25:02Z <p>Core <a href="http://search.cpan.org/perldoc?IO::Handle" rel="nofollow"><code>IO::Handle</code></a> module. Most important thing for me is that it allows autoflush on filehandles. Example:</p> <pre><code>use IO::Handle; $log-&gt;autoflush(1); </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/166230#166230 1 Answer by Taveren for Hidden features of Perl? Taveren 2008-10-03T10:25:16Z 2009-02-23T06:50:00Z <p>Showing progress in the script by printing on the same line:</p> <pre><code>$| = 1; # flush the buffer on the next output for $i(1..100) { print "Progress $i %\r" } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/167309#167309 10 Answer by brunorc for Hidden features of Perl? brunorc 2008-10-03T15:04:33Z 2009-08-23T21:56:23Z <p><a href="http://perldoc.perl.org/functions/map.html" rel="nofollow">map</a> - not only because it makes one's code more expressive, but because it gave me an impulse to read a little bit more about this "functional programming".</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/167809#167809 2 Answer by talexb for Hidden features of Perl? talexb 2008-10-03T16:43:33Z 2008-10-03T16:43:33Z <p>How about the ability to use</p> <p><pre><code>my @symbols = map { +{ 'key' => $_ } } @things;</code></pre></p> <p>to generate an array of hashrefs from an array -- the + in front of the hashref disambiguates the block so the interpreter knows that it's a hashref and not a code block. Awesome.</p> <p>(Thanks to Dave Doyle for explaining this to me at the last Toronto Perlmongers meeting.)</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/168925#168925 5 Answer by Vince Veselosky for Hidden features of Perl? Vince Veselosky 2008-10-03T21:09:09Z 2008-10-03T21:09:09Z <p>I don't know how esoteric it is, but one of my favorites is the <a href="http://www.webquills.net/scroll/2008/05/perl-5-hash-slices-can-replace.html" rel="nofollow">hash slice</a>. I use it for all kinds of things. For example to merge two hashes:</p> <pre> my %number_for = (one => 1, two => 2, three => 3); my %your_numbers = (two => 2, four => 4, six => 6); @number_for{keys %your_numbers} = values %your_numbers; print sort values %number_for; # 12346 </pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/168947#168947 7 Answer by davidnicol for Hidden features of Perl? davidnicol 2008-10-03T21:15:27Z 2008-10-03T21:15:27Z <p>tie, the variable tying interface.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/169592#169592 8 Answer by Shawn H Corey for Hidden features of Perl? Shawn H Corey 2008-10-04T02:29:35Z 2008-10-04T02:29:35Z <p>The continue clause on loops. It will be executed at the bottom of every loop, even those which are next'ed.</p> <pre><code>while( &lt;&gt; ){ print "top of loop\n"; chomp; next if /next/i; last if /last/i; print "bottom of loop\n"; }continue{ print "continue\n"; } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/172118#172118 3 Answer by J.J. for Hidden features of Perl? J.J. 2008-10-05T15:12:40Z 2009-08-25T00:01:18Z <p>All right. Here is another. <a href="http://en.wikipedia.org/wiki/Scope%5F%28programming%29#Static%5Fversus%5Fdynamic%5Fscoping" rel="nofollow">Dynamic Scoping</a>. It was talked about a little in a different post, but I didn't see it here on the hidden features. </p> <p>Dynamic Scoping like Autovivification has a very limited amount of languages that use it. <strong>Perl and Common Lisp are the only two I know of that use Dynamic Scoping.</strong></p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/189883#189883 3 Answer by Telemachus for Hidden features of Perl? Telemachus 2008-10-10T02:11:14Z 2008-10-11T11:05:05Z <p>My favorite semi-hidden feature of Perl is the <code>eof</code> function. Here's an example pretty much directly from <code>perldoc -f eof</code> that shows how you can use it to reset the file name and <code>$.</code> (the current line number) easily across multiple files loaded up at the command line: </p> <pre><code>while (&lt;&gt;) { print "$ARGV:$.\t$_"; } continue { close ARGV if eof } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/194796#194796 2 Answer by Ambrose for Hidden features of Perl? Ambrose 2008-10-11T23:07:37Z 2008-10-11T23:07:37Z <p>I'm a bit late to the party, but a vote for the built-in tied-hash function <code>dbmopen()</code> -- it's helped me a lot. It's not exactly a database, but if you need to save data to disk it takes away a lot of the problems and Just Works. It helped me get started when I didn't have a database, didn't understand Storable.pm, but I knew I wanted to progress beyond reading and writing to text files.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/205104#205104 5 Answer by Schwern for Hidden features of Perl? Schwern 2008-10-15T15:13:09Z 2008-10-15T15:13:09Z <p>The "desperation mode" of Perl's loop control constructs which causes them to look up the stack to find a matching label allows some curious behaviors which Test::More takes advantage of, for better or worse.</p> <pre><code>SKIP: { skip() if $something; print "Never printed"; } sub skip { no warnings "exiting"; last SKIP; } </code></pre> <p>There's the little known .pmc file. "use Foo" will look for Foo.pmc in @INC before Foo.pm. This was intended to allow compiled bytecode to be loaded first, but <a href="http://search.cpan.org/dist/Module-Compile" rel="nofollow">Module::Compile</a> takes advantage of this to cache source filtered modules for faster load times and easier debugging.</p> <p>The ability to turn warnings into errors.</p> <pre><code>local $SIG{__WARN__} = sub { die @_ }; $num = "two"; $sum = 1 + $num; print "Never reached"; </code></pre> <p>That's what I can think of off the top of my head that hasn't been mentioned.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/205627#205627 4 Answer by Daniel for Hidden features of Perl? Daniel 2008-10-15T17:22:31Z 2008-10-15T17:22:31Z <p>($x, $y) = ($y, $x) is what made me want to learn Perl.</p> <p>The list constructor 1..99 or 'a'..'zz' is also very nice.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/243146#243146 2 Answer by ggervais for Hidden features of Perl? ggervais 2008-10-28T12:48:30Z 2009-02-23T06:49:20Z <p>You can replace the delimiter in regexes and strings with just about anything else. This is particularly useful for "leaning toothpick syndrome", exemplified here:</p> <pre><code>$url =~ /http:\/\/www\.stackoverflow\.com\//; </code></pre> <p>You can eliminate most of the back-whacking by changing the delimiter. <code>/bar/</code> is shorthand for <code>m/bar/</code> which is the same as <code>m!bar!</code>.</p> <pre><code>$url =~ m!http://www\.stackoverflow\.com/!; </code></pre> <p>You can even use balanced delimiters like {} and []. I personally love these. <code>q{foo}</code> is the same as <code>'foo'</code>.</p> <pre><code>$code = q{ if( this is awesome ) { print "Look ma, no escaping!"; } }; </code></pre> <p>To confuse your friends (and your syntax highlighter) try this:</p> <pre><code>$string = qq'You owe me $1,000 dollars!'; </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/302384#302384 2 Answer by Jeteve for Hidden features of Perl? Jeteve 2008-11-19T15:58:50Z 2008-11-19T15:58:50Z <p>Use lvalues to make your code really confusing:</p> <pre><code>my $foo = undef ; sub bar:lvalue{ return $foo ;} # Then later bar = 5 ; print bar ; </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/310083#310083 3 Answer by Joe McMahon for Hidden features of Perl? Joe McMahon 2008-11-21T20:27:52Z 2009-06-23T18:59:13Z <p>Very late to the party, but: attributes.</p> <p>Attributes essentially let you define arbitrary code to be associated with the declaration of a variable or subroutine. The best way to use these is with <a href="http://search.cpan.org/perldoc?Attribute::Handlers" rel="nofollow">Attribute::Handlers</a>; this makes it easy to define attributes (in terms of, what else, attributes!).</p> <p>I did a presentation on using them to declaratively assemble a pluggable class and its plugins at YAPC::2006, online <a href="http://www.ibiblio.org/mcmahon/talks/designing4pluggability/" rel="nofollow">here</a>. This is a pretty unique feature.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/479046#479046 0 Answer by On Elpeleg for Hidden features of Perl? On Elpeleg 2009-01-26T07:36:20Z 2009-01-26T07:36:20Z <p>One more...</p> <p>Perl cache: my $processed_input=$records || process_inputs("$records_file");</p> <p>On Elpeleg Open Source, Perl CMS <a href="http://www.web-app.net/" rel="nofollow">http://www.web-app.net/</a></p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/530460#530460 3 Answer by Schwern for Hidden features of Perl? Schwern 2009-02-09T23:00:07Z 2009-02-09T23:00:07Z <p>This one isn't particularly useful, but it's extremely esoteric. I stumbled on this while digging around in the Perl parser.</p> <p>Before there was POD, perl4 had a trick to allow you to embed the man page, as nroff, straight into your program so it wouldn't get lost. perl4 used a program called <a href="http://www.cpan.org/scripts/nutshell/ch6/wrapman" rel="nofollow">wrapman</a> (see Pink Camel page 319 for some details) to cleverly embed an nroff man page into your script.</p> <p>It worked by telling nroff to ignore all the code, and then put the meat of the man page after an <strong>END</strong> tag which tells Perl to stop processing code. Looked something like this:</p> <pre><code>#!/usr/bin/perl 'di'; 'ig00'; ...Perl code goes here, ignored by nroff... .00; # finish .ig 'di \" finish the diversion .nr nl 0-1 \" fake up transition to first page .nr % 0 \" start at page 1 '; __END__ ...man page goes here, ignored by Perl... </code></pre> <p>The details of the roff magic escape me, but you'll notice that the roff commands are strings or numbers in void context. Normally a constant in void context produces a warning. There are special exceptions in <code>op.c</code> to allow void context strings which start with certain roff commands.</p> <pre><code> /* perl4's way of mixing documentation and code (before the invention of POD) was based on a trick to mix nroff and perl code. The trick was built upon these three nroff macros being used in void context. The pink camel has the details in the script wrapman near page 319. */ const char * const maybe_macro = SvPVX_const(sv); if (strnEQ(maybe_macro, "di", 2) || strnEQ(maybe_macro, "ds", 2) || strnEQ(maybe_macro, "ig", 2)) useless = NULL; </code></pre> <p>This means that <code>'di';</code> doesn't produce a warning, but neither does <code>'die';</code> <code>'did you get that thing I sentcha?';</code> or <code>'ignore this line';</code>.</p> <p>In addition, there are exceptions for the numeric constants <code>0</code> and <code>1</code> which allows the bare <code>.00;</code>. The code claims this was for more general purposes.</p> <pre><code> /* the constants 0 and 1 are permitted as they are conventionally used as dummies in constructs like 1 while some_condition_with_side_effects; */ else if (SvNIOK(sv) &amp;&amp; (SvNV(sv) == 0.0 || SvNV(sv) == 1.0)) useless = NULL; </code></pre> <p>And what do you know, <code>2 while condition</code> does warn!</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/530538#530538 2 Answer by Chris Lutz for Hidden features of Perl? Chris Lutz 2009-02-09T23:28:12Z 2009-02-09T23:28:12Z <p>I personally love the /e modifier to the s/// operation:</p> <pre><code>while(&lt;&gt;) { s/(\w{0,4})/reverse($1);/e; # reverses all words between 0 and 4 letters print; } </code></pre> <p>Input:</p> <pre><code>This is a test of regular expressions ^D </code></pre> <p>Output (I think):</p> <pre><code>sihT si a tset fo regular expressions </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/547210#547210 0 Answer by timkay for Hidden features of Perl? timkay 2009-02-13T18:57:47Z 2009-02-23T06:39:41Z <p>You might think you can do this to save memory:</p> <pre><code>@is_month{qw(jan feb mar apr may jun jul aug sep oct nov dec)} = undef; print "It's a month" if exists $is_month{lc $mon}; </code></pre> <p>but it doesn't do that. Perl still assigns a different scalar value to each key. <a href="http://search.cpan.org/perldoc?Devel::Peek" rel="nofollow">Devel::Peek</a> shows this. <code>PVHV</code> is the hash. <code>Elt</code> is a key and the <code>SV</code> that follows is its value. Note that each SV has a different memory address indicating they're not being shared.</p> <pre><code>Dump \%is_month, 12; SV = RV(0x81c1bc) at 0x81c1b0 REFCNT = 1 FLAGS = (TEMP,ROK) RV = 0x812480 SV = PVHV(0x80917c) at 0x812480 REFCNT = 2 FLAGS = (SHAREKEYS) ARRAY = 0x206f20 (0:8, 1:4, 2:4) hash quality = 101.2% KEYS = 12 FILL = 8 MAX = 15 RITER = -1 EITER = 0x0 Elt "feb" HASH = 0xeb0d8580 SV = NULL(0x0) at 0x804b40 REFCNT = 1 FLAGS = () Elt "may" HASH = 0xf2290c53 SV = NULL(0x0) at 0x812420 REFCNT = 1 FLAGS = () </code></pre> <p>An undef scalar takes as much memory as an integer scalar, so you might ask well just assign them all to 1 and avoid the trap of forgetting to check with <code>exists</code>.</p> <pre><code>my %is_month = map { $_ =&gt; 1 } qw(jan feb mar apr may jun jul aug sep oct nov dec); print "It's a month" if $is_month{lc $mon}); </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/686725#686725 5 Answer by Robert P for Hidden features of Perl? Robert P 2009-03-26T17:13:49Z 2009-08-24T23:55:01Z <pre><code>use diagnostics; </code></pre> <p>If you are starting to work with Perl and have never done so before, this module will save you tons of time and hassle. For almost every basic error message you can get, this module will give you a lengthy explanation as to why your code is breaking, including some helpful hints as to how to fix it. For example:</p> <pre><code>use strict; use diagnostics; $var = "foo"; </code></pre> <p>gives you this helpful message:</p> <pre> Global symbol "$var" requires explicit package name at - line 4. Execution of - aborted due to compilation errors (#1) (F) You've said "use strict vars", which indicates that all variables must either be lexically scoped (using "my"), declared beforehand using "our", or explicitly qualified to say which package the global variable is in (using "::"). Uncaught exception from user code: Global symbol "$var" requires explicit package name at - line 4. Execution of - aborted due to compilation errors. at - line 5 </pre> <pre><code>use diagnostics; use strict; sub myname { print { " Some Error " }; }; </code></pre> <p>you get this large, helpful chunk of text:</p> <pre> syntax error at - line 5, near "};" Execution of - aborted due to compilation errors (#1) (F) Probably means you had a syntax error. Common reasons include: A keyword is misspelled. A semicolon is missing. A comma is missing. An opening or closing parenthesis is missing. An opening or closing brace is missing. A closing quote is missing. Often there will be another error message associated with the syntax error giving more information. (Sometimes it helps to turn on -w.) The error message itself often tells you where it was in the line when it decided to give up. Sometimes the actual error is several tokens before this, because Perl is good at understanding random input. Occasionally the line number may be misleading, and once in a blue moon the only way to figure out what's triggering the error is to call perl -c repeatedly, chopping away half the program each time to see if the error went away. Sort of the cybernetic version of S. Uncaught exception from user code: syntax error at - line 5, near "};" Execution of - aborted due to compilation errors. at - line 7 </pre> <p>From there you can go about deducing what might be wrong with your program (in this case, print is formatted entirely wrong). There's a large number of known errors with diagnostics. Now, while this would not be a good thing to use in production, it can serve as a great learning aid for those who are new to Perl.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/931133#931133 3 Answer by ~jack-laplante for Hidden features of Perl? ~jack-laplante 2009-05-31T02:39:22Z 2009-10-31T08:14:37Z <p>You can use @{[...]} to get an interpolated result of complex perl expressions</p> <pre><code>$a = 3; $b = 4; print "$a * $b = @{[$a * $b]}"; </code></pre> <p>prints: <code>3 * 4 = 12</code></p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/931169#931169 5 Answer by Chas. Owens for Hidden features of Perl? Chas. Owens 2009-05-31T03:13:52Z 2009-05-31T03:13:52Z <p>The goatse operator<code>*</code>:</p> <pre><code>$_ = "foo bar"; my $count =()= /[aeiou]/g; #3 </code></pre> <p>or </p> <pre><code>sub foo { return @_; } $count =()= foo(qw/a b c d/); #4 </code></pre> <p>It works because list assignment in scalar context yields the number of elements in the list being assigned.</p> <p><code>*</code> Note, not really an operator</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/1026982#1026982 2 Answer by shmem for Hidden features of Perl? shmem 2009-06-22T12:39:06Z 2009-06-22T12:39:06Z <p>The input record separator can be set to a reference to a number to read fixed length records:</p> <pre><code>$/ = \3; print $_,"\n" while &lt;&gt;; # output three chars on each line </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/1059420#1059420 0 Answer by ikegami for Hidden features of Perl? ikegami 2009-06-29T17:15:51Z 2009-06-29T17:15:51Z <p>The following are just as short but more meaningful than "~~" since they indicate what is returned, and there's no confusion with the smart match operator:</p> <pre><code>print "".localtime; # Request a string print 0+@array; # Request a number </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/1105711#1105711 1 Answer by Dario for Hidden features of Perl? Dario 2009-07-09T18:29:22Z 2009-07-09T18:29:22Z <p><a href="http://search.cpan.org/~dconway/Quantum-Superpositions-1.03/lib/Quantum/Superpositions.pm" rel="nofollow"><code>Quantum::Superpositions</code></a></p> <pre><code>use Quantum::Superpositions; if ($x == any($a, $b, $c)) { ... } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/1270366#1270366 1 Answer by alphamule for Hidden features of Perl? alphamule 2009-08-13T06:33:44Z 2009-08-13T06:33:44Z <p>The <a href="http://en.wikipedia.org/wiki/Schwartzian%5Ftransform" rel="nofollow">Schwartzian Transform</a> is a technique that allows you to efficiently sort by a computed, secondary index. Let's say that you wanted to sort a list of strings by their md5 sum. The comments below are best read backwards (that's the order I always end up writing these anyways):</p> <pre><code>my @strings = ('one', 'two', 'three', 'four'); my $md5sorted_strings = map { $_-&gt;[0] } # 4) map back to the original value sort { $a-&gt;[1] cmp $b-&gt;[1] } # 3) sort by the correct element of the list map { [$_, md5sum_func($_)] } # 2) create a list of anonymous lists @strings # 1) take strings </code></pre> <p>This way, you only have to do the expensive md5 computation N times, rather than N log N times.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/1380565#1380565 0 Answer by mobrule for Hidden features of Perl? mobrule 2009-09-04T17:30:11Z 2009-09-04T17:30:11Z <p>$0 is the name of the perl script being executed. It can be used to get the context from which a module is being run.</p> <pre><code># MyUsefulRoutines.pl sub doSomethingUseful { my @args = @_; # ... } if ($0 =~ /MyUsefulRoutines.pl/) { # someone is running perl MyUsefulRoutines.pl [args] from the command line &amp;doSomethingUseful (@ARGV); } else { # someone is calling require "MyUsefulRoutines.pl" from another script 1; } </code></pre> <p>This idiom is helpful for treating a standalone script with some useful subroutines into a library that can be imported into other scripts. Python has similar functionality with the <code>object.__name__ == "__main__"</code> idiom.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/1548716#1548716 0 Answer by Kiffin for Hidden features of Perl? Kiffin 2009-10-10T18:37:15Z 2009-10-10T18:37:15Z <p>The expression <code>defined &amp;DB::DB</code> returns true if the program is running from within the debugger.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/1653812#1653812 1 Answer by Eric Strom for Hidden features of Perl? Eric Strom 2009-10-31T08:49:34Z 2009-10-31T08:49:34Z <p>One useful composite operator for conditionally adding strings or lists into other lists is the <code>x!!</code>operator:</p> <pre><code> print 'the meaning of ', join ' ' =&gt; 'life,' x!! $self-&gt;alive, 'the universe,' x!! ($location ~~ Universe), ('and', 'everything.') x!! 42; # this is added as a list </code></pre> <p>this operator allows for a reversed syntax similar to</p> <pre><code> do_something() if test(); </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/1681732#1681732 0 Answer by Erick for Hidden features of Perl? Erick 2009-11-05T16:21:50Z 2009-11-05T16:21:50Z <p>Interpolation of match regular expressions. A useful application of this is when matching on a blacklist. Without using interpolation it is written like so:</p> <pre><code>#detecting blacklist words in the current line /foo|bar|baz/; </code></pre> <p>Can instead be written</p> <pre><code>@blacklistWords = ("foo", "bar", "baz"); $anyOfBlacklist = join "|", (@blacklistWords); /$anyOfBlacklist/; </code></pre> <p>This is more verbose, but allows for population from a datafile. Also if the list is maintained in the source for whatever reason, it is easier to maintain the array then the RegExp.</p>