Variable wordBoundaryConst

wordBoundary: RegExpToken = r.wordBoundary

Assert position at a word boundary, between word and non-word characters.

Example

wordBoundary

RegExp equivalent:

/\b/

Example

Negated token

not.wordBoundary
not(wordBoundary)

RegExp equivalent:

/\B/

Generated using TypeDoc