The @regex module contains a single class @regex, which is used for matching strings based on regular expressions.

@regex Methods

:new(pattern) #

Create a new regular expression

Parameters

Return

Notes

The pattern should match the syntax of C++/Javascript's regex syntax.

Example

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(s) #

Match this regex against a string.

Parameters

Return

Notes

The first match group is the entire regular expression. Subsequent match groups correspond to parentheticals inside the regular expression.

:search(s) #

Search for this regex inside a string.

Parameters

Return

Notes

The first match group is the entire regular expression. Subsequent match groups correspond to parentheticals inside the regular expression.

:all(s) #

Search for all instances of this regex inside a string

Parameters

Return

Notes

The first match group is the entire regular expression. Subsequent match groups correspond to parentheticals inside the regular expression.

:replace(s,fmt) #

Replace instances of this regular expression within a string.

Parameters

Return

Notes

The format string should match the syntax of C++/Javascript's format string: