Variable nullCharConst

nullChar: RegExpToken = r.nullChar

Match a null character.

Example

nullChar

RegExp equivalent:

/\0/

Example

Negated token

not.nullChar
not(nullChar)

RegExp equivalent:

/[^\0]/

Generated using TypeDoc