October 2017
Intermediate to advanced
440 pages
11h 47m
English
The best place to begin is with the simplest of expressions: expressions that contain no special characters. These expressions contain what are known as literal characters. A literal character is anything except [\^$.|?*+(). Special characters must be escaped using \ to avoid errors, for example:
'9*8'-match '\*' # * is reserved '1+5' -match '\+' # + is reserved
Curly braces ({}) are considered literal in many contexts.
Read now
Unlock full access