REGEXP Patterns
REGEXP Patterns is the default search option, utilizing powerful regular expressions for advanced text matching. This method allows for complex search queries using special characters and operators.
Regular Expression
|
Description
|
---|---|
^co | Matches strings that begin with the substring "co". |
er$ | Matches strings that end with the substring "er". |
er | Matches strings that contain the substring "er" at any position. |
^..pp | Matches strings that contain the substring "pp" at a specific position (starting after two characters). |