Site Tools


Hotfix release available: 2026-07-14c "Mort". upgrade now! [57.3] (what's this?)
Hotfix release available: 2026-07-14b "Mort". upgrade now! [57.2] (what's this?)
Hotfix release available: 2026-07-14a "Mort". upgrade now! [57.1] (what's this?)
New release available: 2026-07-14 "Mort". upgrade now! [57] (what's this?)
Hotfix release available: 2025-05-14b "Librarian". upgrade now! [56.2] (what's this?)
Hotfix release available: 2025-05-14a "Librarian". upgrade now! [56.1] (what's this?)
New release available: 2025-05-14 "Librarian". upgrade now! [56] (what's this?)
Hotfix release available: 2024-02-06b "Kaos". upgrade now! [55.2] (what's this?)
Hotfix release available: 2024-02-06a "Kaos". upgrade now! [55.1] (what's this?)
New release available: 2024-02-06 "Kaos". upgrade now! [55] (what's this?)
Hotfix release available: 2023-04-04b "Jack Jackrum". upgrade now! [54.2] (what's this?)
Hotfix release available: 2023-04-04a "Jack Jackrum". upgrade now! [54.1] (what's this?)
New release available: 2023-04-04 "Jack Jackrum". upgrade now! [54] (what's this?)
Hotfix release available: 2022-07-31b "Igor". upgrade now! [53.1] (what's this?)
Hotfix release available: 2022-07-31a "Igor". upgrade now! [53] (what's this?)
New release available: 2022-07-31 "Igor". upgrade now! [52.2] (what's this?)
New release candidate 2 available: rc2022-06-26 "Igor". upgrade now! [52.1] (what's this?)
New release candidate available: 2022-06-26 "Igor". upgrade now! [52] (what's this?)
Hotfix release available: 2020-07-29a "Hogfather". upgrade now! [51.4] (what's this?)
notes:perl_cheat_sheet

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
notes:perl_cheat_sheet [2026/09/15 02:33]
85.90.197.93 old revision restored (2013/08/22 04:52)
notes:perl_cheat_sheet [2026/09/17 10:21] (current)
188.3.199.7 old revision restored (2026/09/11 18:08)
Line 13: Line 13:
   * Comments start with # (no block comments)   * Comments start with # (no block comments)
   * Parenthesis are optional unless part of syntax.   * Parenthesis are optional unless part of syntax.
 +  * ''@ARGV'' contains arguments, $0 contains program name.
 +  * ''die'' can be used to exit early $! will contain any system error message. Without \n at the end, perl will append line number to error message.
  
 +===== Numbers =====
 +
 +  * All numbers are stored in the same format e.g.-6.5e24, 037 (octal), 0x2a13b (hex), 0b11010 (binary)
 +  * Underscores for readability are ignored e.g. 0x1377_0B77
 +  * Arithmetic operators are * / + - % (modulus) %%**%% (exponentiation)
 +  * Comparison operators are < <= == >= > !=
 +
 +===== Strings =====
 +
 +  * To use unicode in source code - "use utf8;"
 +  * Single-quoted literals '⅚∞☃☠' can contain any character except single-quote (use \') and backslash (use \\).
 +  * Double-quoted strings can contain control-characters starting with a backslash and are variable interpolated e/g/ "${var}s $var\n".
 +  * . is for concatenation, x for string repetition.
 +  * To insert a character by code - chr(0x05d0). To convert a character to its code - ord('א')
 +  *  String comparison operators are lt, le, eq, ge, gt, and ne
  
 ===== Scalar Variables ===== ===== Scalar Variables =====
  
   * Scalars are numbers or strings (or undefined or references), used interchangeably.   * Scalars are numbers or strings (or undefined or references), used interchangeably.
-  * Scalar variables start with $ and a letter or underscore, but can contain letters (including unicode), numbers or underscores.+  * $calar variables start with $ and a letter or underscore, but can contain letters (including unicode), numbers or underscores.
   * Scalar assignment looks like  $a = 3; or $a .= "suffix"; or $a %%**%%= 3;   * Scalar assignment looks like  $a = 3; or $a .= "suffix"; or $a %%**%%= 3;
   * Recommended to use all lowercase variable names with underscores for word separation e.g. $var_name   * Recommended to use all lowercase variable names with underscores for word separation e.g. $var_name
Line 30: Line 47:
  
   * A list is an ordered set of elements (each of which is a scalar value), starting with position 0.   * A list is an ordered set of elements (each of which is a scalar value), starting with position 0.
-  * An array is a variable that stores a list (separate namespace from scalar variables). @x refers to entire array x.+  * @rrays are variables that store a list (separate namespace from scalar variables). @x refers to entire array x.
   * Undefined arrays start out as ''()'', the empty list and not ''undef''.   * Undefined arrays start out as ''()'', the empty list and not ''undef''.
   * To access an element of an array - ''$myarr[0]'' - ''undef'' if never set.   * To access an element of an array - ''$myarr[0]'' - ''undef'' if never set.
Line 38: Line 55:
   * Can assign list values to variables e.g. <code perl>($fred, $barney, $dino) = ("flintstone", "rubble", undef);   * Can assign list values to variables e.g. <code perl>($fred, $barney, $dino) = ("flintstone", "rubble", undef);
 ($fred, $barney) = ($barney, $fred); # swap those values</code> ($fred, $barney) = ($barney, $fred); # swap those values</code>
-===== Numbers ===== +  ''push'' adds element(sto **end** of array''pop'' removes a single element and returns it
- +  * ''unshift'' adds element(sto **start** of array. ''shift'' removes a single element and returns it. 
-  All numbers are stored in the same format e.g.-6.5e24, 037 (octal), 0x2a13b (hex), 0b11010 (binary) +  * ''splice'' removes elements from middle of array, returns them and optionally replaces them <code perl>splice @arr, start, len, @newelems</code
-  Underscores for readability are ignored e.g0x1377_0B77 +  * ''sort'' and ''reverse'' functions return the modified list (can be saved to original array variable). 
-  * Arithmetic operators are * / + - % (modulus) ** (exponentiation) +  * Expressions parsed in either scalar context or a list context. Scalars are promoted to single-element lists in list context.  
-  * Comparison operators are < <= == >= > != +  * List functions may return different scalars array variables return number of elementsThe ''scalar'' function forces a scalar context e.g. for print function.
- +
-===== Strings ===== +
-  * To use unicode in source code - "use utf8;" +
-  * Single-quoted literals '⅚∞☃☠can contain any character except single-quote (use \'and backslash (use \\). +
-  * Double-quoted strings can contain control-characters starting with backslash and are variable interpolated e/g/ "${var}s $var\n"+
-  * . is for concatenation, x for string repetition. +
-  * To insert a character by code chr(0x05d0)To convert a character to its code - ord('א'+
-  *  String comparison operators are lt, le, eq, ge, gt, and ne+
  
 ===== Control Structures ===== ===== Control Structures =====
Line 65: Line 74:
 while ($count < 10) { while ($count < 10) {
     $count += 2;     $count += 2;
 +}</code>
 +  * foreach loop <code perl>foreach my $rock (@rocks) {
 +  # modifications to $rock modify the list element
 +  # $_ is used if loop variable is omitted
 }</code> }</code>
  
Line 71: Line 84:
   * Read a line of input - ''$line = <STDIN>;''   * Read a line of input - ''$line = <STDIN>;''
   * ''chomp'' removes a newline e.g. ''chomp($line=<STDIN>);''   * ''chomp'' removes a newline e.g. ''chomp($line=<STDIN>);''
 +  * Assigning <STDIN> to a list reads all input up till EOF e.g. <code perl> chomp(@lines = <STDIN>);</code>
 +  * Loop over input ($_ can only be used in this specific case) <code perl>while (<STDIN>) {
 +    print "I saw $_";
 +}</code>
 +  * ''foreach'' can also be used but uses more memory since it reads all input into memory first.
 +  * ''<>'' iterates over all files in @ARGV (or STDIN if no args) like e.g. cat/sed/awk. <code perl>while (<>) {
 +    chomp;
 +    print "It was $_ that I saw!\n";
 +}</code>
 +  * ''print'' takes list of items and sends all to STDOUT (unseparated). ''print @array;'' vs ''print "@array";'' <code perl>print <>;          # source code for 'cat'
 +print sort <>;     # source code for 'sort'</code>
 +  * C-like printf function %g for number auto-format,%10s, %-10d etc.<code perl>my @items = qw( wilma dino pebbles );
 +my $format = "The items are:\n" . ("%10s\n" x @items);
 +printf $format, @items;
 +printf "The items are:\n".("%10s\n" x @items), @items;
 +</code>
 +  * Filehandles can be barewords (upper-cased) or variables. Special filehandles are : STDIN, STDOUT, STDERR, DATA, ARGV, and ARGVOUT .<code perl>open CONFIG, '<dino';  # < is optional
 +open BEDROCK, '>fred' || die "Cannot open fred: $!";
 +open LOG, '>>:encoding(UTF-8)','logfile'; # for perl >= 5.6
 +open BEDROCK, '>:crlf', $file_name; # DOS-formatted output
 +binmode STDOUT, ':encoding(UTF-8)';</code>
 +===== User Subroutines =====
  
 +  * Subroutines are in their own namespace and are typically called using ''&mysub'' (sometimes the ampersand can be omitted).
 +  * Subroutines can be defined anywhere e.g. <code perl> sub mysub {
 +  my($m, $n) = @_
 +  $m + $n;
 +} </code>
 +  * The value of the last expression evaluated is returned. But ''return $a;'' can be used to return immediately.
 +  * A list can be returned if the subroutine is called in a list context (''wantarray'' can be used to detect list or scalar context).
 +  * Arguments are in the list @_ . If ''&mysub;'' is used, the parent's argument list is inherited.
 +  * Lexical scoped variables can be used in any block by prefixing with ''my''.
 +  * In Perl 5.10 and up ''state $x;'' can be used to declare a private variable that keep state between calls.
 +  * Ampersand is optional if subroutine has previously been declared or if parenthesis are used. Ampersand is not optional if built-in subroutine is being overridden.
notes/perl_cheat_sheet.1789464796.txt.gz · Last modified: 2026/09/15 02:33 by 85.90.197.93