The backslash in a regular expression precedes a literal character. You also escape certain letters that represent common character classes, such as \w for a word character or \s for a space. The following example matches word characters (alphanumeric and underscores) and spaces.
(\w+)
|
|
Escaped Characters describes the escaped characters supported in JMP. \C, \G, \X, and \z are not supported.
\cX
|
|
single digit [0-9]
|
|
word character [a-zA-Z0-9_]
|
|
single character that is NOT a word character [^a-zA-Z0-9_]
|
|