Construct a RegExpT object.
Regular expression.
RegExpException if there are any compilation errors.
Declare two variables and assign to them a Regex object:
auto r = new Regex("pattern"); auto s = new Regex(r"p[1-5]\s*");
See Implementation
Construct a RegExpT object.