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