MySQL and MariaDB - Overview of the functions for Regular expressions | MySQL and MariaDB supports regular expressions and provides a set of functions that can be used to work with regular expressions. Regular expression functions can be very useful for working with complex patterns in string data and values, and can be combined with other functions and operators to perform complex string manipulations and data transformations. | Reguläre Ausdrücke |
| REGEXP | String [NOT] REGEXP Pattern | Gibt an, ob die Zeichenfolge mit dem regulären Ausdruck übereinstimmt. More about REGEXP Function
Synonyms:RLIKE | REGEXP_INSTR | REGEXP_INSTR(String, Pattern [, Position] [, Occurrence] [, Return option] [, Match type]) | Gibt den Anfangsindex der Teilzeichenkette zurück, die mit dem regulären Ausdruck übereinstimmt. More about REGEXP_INSTR Function | REGEXP_LIKE | REGEXP_LIKE(String, Pattern [, Match type]) | Gibt 1 zurück, wenn die Zeichenfolge mit dem regulären Ausdruck übereinstimmt. More about REGEXP_LIKE Function | REGEXP_REPLACE | REGEXP_REPLACE(String, Pattern, Replace by [, Position] [, Occurrence] [, Match type]) | Ersetzt Vorkommen in der Zeichenfolge, die mit dem regulären Ausdruck übereinstimmen, durch die Ersatzzeichenfolge. More about REGEXP_REPLACE Function | REGEXP_SUBSTR | REGEXP_SUBSTR(String, Pattern [, Position] [, Occurrence] [, Match type]) | Gibt die Teilzeichenfolge der Zeichenfolge zurück, die mit dem regulären Ausdruck übereinstimmt. More about REGEXP_SUBSTR Function | RLIKE | String [NOT] RLIKE Pattern | Gibt an, ob die Zeichenfolge mit dem regulären Ausdruck übereinstimmt. More about RLIKE Function
Synonyms:REGEXP |
|
|
| See also: |
|
|
|