Custom Command
FunctionsRegex Functions

$regexCheck

To check if a text matches a regex or not, returns true or false

Usage

$regexCheck[Text;Regex;Flags]

Example (Check If Text is letters):

!!exec $regexCheck[ABC;^[a-zA-Z]+$]

true

Example:

!!exec $regexCheck[A2B;^[a-zA-Z]+$]

false

On this page