The @regex
module contains a single class @regex,
which is used for matching strings based on
regular expressions.
@regex
MethodsCreate a new regular expression
The pattern should match the syntax of C++/Javascript's regex syntax.
r = regex('(\\d\\d?) (\\w\\w\\w) (\\d\\d\\d\\d)') s = 'Wed, 6 Dec 2023 21:43:12 UT' print r.match(s) #null print r.search(s) #[ "6 Dec 2023","6","Dec","2023" ] print r.replace(s,'moo') #Wed, moo 21:43:12 UT
Match this regex against a string.
The first match group is the entire regular expression. Subsequent match groups correspond to parentheticals inside the regular expression.
Search for this regex inside a string.
The first match group is the entire regular expression. Subsequent match groups correspond to parentheticals inside the regular expression.
Search for all instances of this regex inside a string
The first match group is the entire regular expression. Subsequent match groups correspond to parentheticals inside the regular expression.
Replace instances of this regular expression within a string.
The format string should match the syntax of C++/Javascript's format string:
$n
— the nth match group
$$
— a single $ character