-
Notifications
You must be signed in to change notification settings - Fork 0
module
Snazzah edited this page Aug 3, 2017
·
2 revisions
module.exports(...a): CoolTag
See new CoolTag().
.tag: CoolTag
.value: CoolValue
| Key | Regex | Description |
|---|---|---|
.ANY
|
[^%s%%e%] |
Selects all characters |
.ANY_NO_NEWLINES
|
[^%s%%e%\n] |
Selects all characters except newlines |
.NEWLINE
|
\n |
Selects newlines |
.WORDS
|
\w |
Selects any word characters |
.NON_WORDS
|
\W |
Selects any non-word characters |
.DIGITS
|
\d |
Selects any digit |
.NON_DIGITS
|
\D |
Selects any non-digit |
.WHITESPACE
|
\s |
Selects any whitespace characters |
.NON_WHITESPACE
|
\S |
Selects any non-whitespace characters |