Skip to main content
About the Resource Center

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.

Note: Capturing groups and any additional features that rely on capturing groups are not currently supported.

Supported regex features

The following sections describe supported regex features.