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
- Please give an example and a short description


----------

##Hidden Features also found in other languages' Hidden Features:##

(These are all from [Corion's answer][1])

- [C#][2]
 - Duff's Device
 - Portability and Standardness
 - 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]
- [tie][34]
- [Dynamic Scoping][35]

Loops and flow control:

- [Magic goto][36]
- [`for` on a single variable][37]
- [continue clause][38]

Regular expressions:

- [The `\G` anchor][39]
- [`(?{})` and '(??{})` in regexes][40]

Other features:

- [The debugger][41]
- [Special code blocks such as BEGIN, CHECK, and END][42]
- [The `DATA` block][43]
- [New Block Operations][44]
- [Source Filters][45]
- [Signal Hooks][46]
- [map][47] ([twice][48])
- [Wrapping built-in functions][49]


Other tricks, and meta-answers:

- [cat files, decompressing gzips if needed][50]
- [Perl Tips][51]


----------


**See Also:**

  - [Hidden features of C][52]
  - [Hidden features of C#][53]
  - [Hidden features of C++][54]
  - [Hidden features of Java][55]
  - [Hidden features of JavaScript][56]
  - [Hidden features of Ruby][57]
  - [Hidden features of PHP][58]
  - [Hidden features of Python][59]


  [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#168947
  [35]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#172118
  [36]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
  [37]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163481
  [38]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#169592
  [39]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162565
  [40]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#161976
  [41]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440
  [42]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162206
  [43]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163700
  [44]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
  [45]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
  [46]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601
  [47]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#167309
  [48]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#167809
  [49]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162842
  [50]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#163532
  [51]: http://stackoverflow.com/questions/161872/hidden-features-of-perl#162271
  [52]: http://stackoverflow.com/questions/132241/hidden-features-of-c
  [53]: http://stackoverflow.com/questions/9033/hidden-features-of-c
  [54]: http://stackoverflow.com/questions/75538/hidden-features-of-c
  [55]: http://stackoverflow.com/questions/15496/hidden-features-of-java
  [56]: http://stackoverflow.com/questions/61088/hidden-features-of-javascript
  [57]: http://stackoverflow.com/questions/63998/hidden-features-of-ruby
  [58]: http://stackoverflow.com/questions/61401/hidden-features-of-php
  [59]: http://stackoverflow.com/questions/101268/hidden-features-of-python