Rest
...args: unknown[]notCharRange`a` `z`
not.charRange`a` `z`
notCharRange('a', 'z')
RegExp equivalent:
/[^a-z]/
Match a character not in the range of first to second char.
Escape sequences are supported and the two characters must be in order.
notCharRange
is a short form of not.charRange
. For more details, see the documentation of
charRange.
notCharRange`a` `z`
not.charRange`a` `z`
notCharRange('a', 'z')
RegExp equivalent:
/[^a-z]/
Match a character not in the range of first to second char.
Escape sequences are supported and the two characters must be in order.
notCharRange
is a short form of not.charRange
. For more details, see the documentation of
charRange.
notCharRange`a` `z`
not.charRange`a` `z`
notCharRange('a', 'z')
RegExp equivalent:
/[^a-z]/
Generated using TypeDoc
Match a character not in the range of first to second char.
Escape sequences are supported and the two characters must be in order.
notCharRange
is a short form ofnot.charRange
. For more details, see the documentation of charRange.