Allows specifying regular expression patterns in expressions, without having to compile them each time.
if (text.match(^\d+$)) {} // old code - recompiles every time if (text.match(re!^\d+$)) {} // new code - recompiles once
See Implementation
Allows specifying regular expression patterns in expressions, without having to compile them each time.