RegularExpression instance.
Use the optional parameter pattern to
define a regular expression pattern that will be used to match strings.
You can select the type of regular expression matching to be
“greedy” by specifying option MAXIMAL, or to be
“lazy” by specifying option MINIMAL.
Option MAXIMAL is the default.
RegularExpression defines its own
init method.
Any subclass which also defines its own init
method, must forward to its superclass to complete object initialization.
For details see Section 4.2.9, “Initialization”.
re1 = .RegularExpression~new
re2 = .RegularExpression~new("Hello?*")