There have been a whole series of these questions so far, and for some reason Perl seems to have been left out.
What are some really useful but esoteric language features in Perl that you've actually been able to employ to do useful work?
Guidelines:
- Try to limit answers the Perl core and not CPAN
- One feature per answer
- Please give an example and a short description
----------
**UPDATE:** I've attempted to group and summarize the answers so far below.
##Hidden Features also found in other languages' Hidden Features:##
(These are all from [Corion's answer][1])
- [C#][2]
- Duff's Device
- Portability and Standardnewss
- Quotes for whitespace delimited lists and strings
- Aliasable namespaces
- [Java][3]
- Static Initalizers
- [JavaScript][4]
- Functions are First Class citizens
- Block scope and closure
- Calling methods and accessors indirectly through a variable
- [Ruby][5]
- Defining methods through code
- [PHP][6]
- Pervasive online documentation
- Magic methods
- Symbolic references
- [Python][7]
- One line value swapping
- Ability to replace even core functions with your own functionality
##Other Hidden Features:##
Operators:
- [The bool quasi-operator][8]
- [The flip-flop operator][9]
- [The `++` and unary `-` operators work on strings][10]
- [The repetition operator][11]
- [The spaceship operator][12]
- [The || operator (and // operator) to select from a set of choices][13]
- [The diamond operator][14]
- [Special cases of the `m//` operator][15]
- [The tilde-tilde "operator"][16]
Quoting constructs:
- [The qw operator][17]
- [Letters can be used as quote delimiters in q{}-like constructs][18]
- [Quoting mechanisms][19]
Syntax and Names:
- [There can be a space after a sigil][20]
- [You can give subs numeric names with symbolic references][21]
- [Legal trailing commas][22]
- [Grouped Integer Literals][23]
- [hash slices][24]
Modules, Pragmas, and command-line options:
- [use strict and use warnings][25]
- [Taint checking][26]
- [Esoteric use of -n and -p][27]
- [CPAN][28]
- [`overload::constant`][29]
- [IO::Handle module][30]
- [Safe compartments][31]
Variables:
- [Autovivification][32]
- [The `$[` variable][33]
Loops and flow control:
- [Magic goto][34]
- [`for` on a single variable][35]
- [continue clause][36]
Regular expressions:
- [The `\G` anchor][37]
- [`(?{})` and '(??{})` in regexes][38]
Other features:
- [The debugger][39]
- [Special code blocks such as BEGIN, CHECK, and END][40]
- [The `DATA` block][41]
- [New Block Operations][42]
- [Source Filters][43]
- [Signal Hooks][44]
- [map][45] ([twice][46])
- [Wrapping built-in functions][47]
Other tricks, and meta-answers:
- [cat files, decompressing gzips if needed][48]
- [Perl Tips][49]
----------
**See Also:**
- [Hidden features of C][50]
- [Hidden features of C#][51]
- [Hidden features of C++][52]
- [Hidden features of Java][53]
- [Hidden features of JavaScript][54]
- [Hidden features of Ruby][55]
- [Hidden features of PHP][56]
- [Hidden features of Python][57]
[1]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162257
[2]: http://stackoverflow.com/questions/132241/hidden-features-of-c#
[3]: http://stackoverflow.com/questions/15496/hidden-features-of-java
[4]: http://stackoverflow.com/questions/61088/hidden-features-of-javascript
[5]: http://stackoverflow.com/questions/63998/hidden-features-of-ruby
[6]: http://stackoverflow.com/questions/61401/hidden-features-of-php
[7]: http://stackoverflow.com/questions/101268/hidden-features-of-python
[8]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094
[9]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162058
[10]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162004
[11]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162075
[12]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#161943
[13]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162239
[14]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162152
[15]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162249
[16]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162060
[17]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416
[18]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094
[19]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163374
[20]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094
[21]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094
[22]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416
[23]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
[24]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#168925
[25]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
[26]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
[27]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162085
[28]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163541
[29]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
[30]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#164255
[31]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163725
[32]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162357
[33]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#161985
[34]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
[35]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163481
[36]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#169592
[37]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162565
[38]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#161976
[39]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
[40]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162206
[41]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163700
[42]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
[43]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
[44]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
[45]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#167309
[46]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#167809
[47]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162842
[48]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163532
[49]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162271
[50]: http://stackoverflow.com/questions/132241/hidden-features-of-c
[51]: http://stackoverflow.com/questions/9033/hidden-features-of-c
[52]: http://stackoverflow.com/questions/75538/hidden-features-of-c
[53]: http://stackoverflow.com/questions/15496/hidden-features-of-java
[54]: http://stackoverflow.com/questions/61088/hidden-features-of-javascript
[55]: http://stackoverflow.com/questions/63998/hidden-features-of-ruby
[56]: http://stackoverflow.com/questions/61401/hidden-features-of-php
[57]: http://stackoverflow.com/questions/101268/hidden-features-of-python