Variable wordConst

word: RegExpToken = r.word

Match alphanumeric characters and underscore.

Example

word

RegExp equivalent:

/\w/

Example

Negated token

not.word
not(word)

RegExp equivalent:

/\W/

Generated using TypeDoc