Regular expression language quick reference
The regex entities use a deterministic approach for matching values via regex expressions.
A regular expression is a pattern that the regular expression engine attempts to match in input text. A pattern consists of one or more character literals, operators, or constructs. Regular expressions can contain both special and ordinary characters. Most ordinary characters, like ‘A’, ‘a’, or ‘0’, are the simplest regular expressions; they simply match themselves. You can concatenate ordinary characters, so last matches the string ‘last’.
Some characters, like ‘|’ or ‘(‘, are special. Special characters either stand for classes of ordinary characters, or affect how the regular expressions around them are interpreted.
Each section in this quick reference lists a particular category of characters, operators, and constructs that you can use to define regular expressions.
Supported regex features
The following sections describe supported regex features.
[NEXT] Was this article helpful?
Get user feedback about articles.