- backreference
- save for later re-use
- backtrack
- regex works by scanning and partially rescanning the line
- compartment
- compartment one and two means code between the slashes,
as in s/compartment one/compartment two/
- match
- left-side to m/^$/
- regex
- Regular Expression
|
- result status
- question its consistency, but using this code
- $status = ($words =~ /error/g);
- $status becomes "1" (YES) or null (empty)
- substitute
- replaces left with right s/left/right/
- same as above s"left"right"
- translate
- e.g. turns lower case to upper tr/[A-Z]/right/
|