Variable backspaceConst

backspace: RegExpToken = r.backspace

Match a backspace character.

Example

backspace

RegExp equivalent:

/[\b]/

Example

Negated token

not.backspace
not(backspace)

RegExp equivalent:

/[^\b]/

Generated using TypeDoc