Variable whitespaceConst

whitespace: RegExpToken = r.whitespace

Match all types of whitespace characters.

When negated: match anything other than a whitespace.

Example

whitespace

RegExp equivalent:

/\s/

Example

Negated token

not.whitespace
not(whitespace)

RegExp equivalent:

/\S/

Generated using TypeDoc