该帮助的版本不再更新,请参见https://www.jmp.com/support/help/zh-cn/15.2 获取最新的版本.


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.
"Are you there, Alice?, asked Jerry.", // source
"(here|there).+(\w+).+(said|asked)(\s)(\w+)\." ); // regular expression
(\w+)
Escaped Characters describes the escaped characters supported in JMP. \C, \G, \X, and \z are not supported.
word character [a-zA-Z0-9_]
\x00-\xFF
\x{0000}-\x{FFFF}