JadeRegex Class
The JadeRegex class provides methods for quick, simple use of the JadeRegexLibrary. Each method has parameters that are common to most pattern-matching requirements; for example, to match a decimal:
isDecimal := JadeRegex@isMatch("3.14", "\d+\.\d+", false);
As the JadeRegex class provides simple single-use functionality, use the fluent methods provided by the JadeRegexPattern class if you require more‑complicated or more-frequent operations; for example, to avoid recompiling the pattern if you want to run a specific Regex pattern multiple times.
For details about the methods in the JadeRegex class, see "JadeRegex Methods", in the following subsection.
(None)
2020.0.01 and higher