Basic Regular Expression Constructs
This page lists very basic regular expression constructs that you can use in multiple NuoDB tools. In particular, regular expressions are allowed in the REGEXP
pattern matching function in NuoDB SQL. For examples of how these constructs are used, see NuoDB SQL.
Syntax | Pattern Match |
---|---|
|
Start of the expression. |
|
End of the expression. |
|
Any single character in the expression. Includes whitespace, tab, newline. |
[ |
A single character, |
|
A single character, but neither |
|
Any of the patterns |
|
Zero or more instances of |
|
One or more instances of |
|
Either zero or one instance of |
( |
Zero or more instances of the sequence |
a |
|
|
|
a |
|
|
Any character that is either |
|
Any character that is neither |