This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
notes:perl_cheat_sheet [2026/06/13 00:12] 114.119.158.118 old revision restored (2013/09/22 14:25) |
notes:perl_cheat_sheet [2026/06/18 01:33] (current) 114.119.158.118 old revision restored (2013/09/15 03:01) |
||
|---|---|---|---|
| Line 14: | Line 14: | ||
| * Parenthesis are optional unless part of syntax. | * Parenthesis are optional unless part of syntax. | ||
| * '' | * '' | ||
| - | | + | * * 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 ===== | ===== Numbers ===== | ||
| Line 62: | Line 62: | ||
| * List functions may return different scalars - array variables return number of elements. The '' | * List functions may return different scalars - array variables return number of elements. The '' | ||
| - | ===== Hashes ===== | ||
| - | |||
| - | * A hash is a list indexed by a string (key) - a collection of key-value pairs. '' | ||
| - | * Uses scalable, efficient algorithms. Used to be called associative arrays. | ||
| - | * '' | ||
| - | * Assigning a hash to an array unwinds (flattens) it. | ||
| - | * To initialize a hash :<code perl> | ||
| - | %some_hash = ( ' | ||
| - | * When using a big arrow (a fat-comma) or when accessing a value, simple keys don't have to be quoted (barewords) e.g. <code perl> | ||
| - | * '' | ||
| ===== Control Structures ===== | ===== Control Structures ===== | ||
| Line 101: | Line 91: | ||
| * ''<>'' | * ''<>'' | ||
| chomp; | chomp; | ||
| - | print LOGFILE | + | print "It was $_ that I saw!\n"; |
| }</ | }</ | ||
| * '' | * '' | ||
| Line 113: | Line 103: | ||
| open BEDROCK, '> | open BEDROCK, '> | ||
| open LOG, '>>: | open LOG, '>>: | ||
| - | open my $bedrock, '>: | + | open BEDROCK, '>: |
| binmode STDOUT, ': | binmode STDOUT, ': | ||
| - | * '' | ||
| ===== User Subroutines ===== | ===== User Subroutines ===== | ||