Class regex
        
        Regex support
        
Creating a new regex instance
To create a new regex instance, use the regex constructor:
local reg = regex{ pattern = "[1-9][0-9]*" }
assert(reg:match("7392473"))
        Methods
regex:match (string)
Scan a given string for a match.
Parameters
- 
            stringType: stringThe string to scan for a match.
Return Values
- 
            booleantrueif a match was found,falseotherwise.
Attribution
Copyright
- 2017 Aidan Holm