notBefore()
The notBefore
method will match anything that does not have the input argument before.
notBefore
will escape characters for you automatically.
Usage
notBefore(PARAMETERS)
Example
const word = "How about 5 for $7?";
const code = "<matchAll> notBefore($) [number]"
// Match: "5"
Regex
notBefore
will just plainly translate into regex. A
will be a
, however, some characters will be escaped, like .
which will become \.
.