MariaDB Tutorial MariaDB Advanced MariaDB Database Account Management MariaDB References

MariaDB - REGEXP



A REGEXP, or Regular Expression is a sequence of characters that defines a search pattern. It is used to check whether a expression contains specified search pattern or not.

Apart from LIKE and NOT LIKE operators, MariaDB supports another type of pattern matching operation based on REGEXP Functions and Operators.

MariaDB REGEXP Functions and Operators

Following is the list of REGEXP Functions and Operators supported by MariaDB:

NameDescription
NOT REGEXPNegation of REGEXP
NOT RLIKENegation of RLIKE
REGEXPUsed to check whether string matches regular expression
REGEXP_INSTR()Starting index of substring matching regular expression
REGEXP_REPLACE()Replace substrings matching regular expression
REGEXP_SUBSTR()Return substring matching regular expression
RLIKEUsed to check whether string matches regular expression

Regular Expression Patterns

Following is the table for pattern syntax, which can be used with the REGEXP Functions and Operators.

Regular Expression Patterns

SymbolDescription
^Matches the beginning of a string.
$Matches the end of a string.
*Matches zero or more occurrences.
+Matches one or more occurrences.
?Matches zero or one occurrence.
.Matches any character except NULL.
|Used like an "OR" to specify more than one alternative.
[ ]Matches any single character specified within [].
[^ ]Matches any single character that is not specified within [].
-Represents a range of characters.
( )Used to group expressions as a subexpression.
{m}Matches m times.
{m,}Matches at least m times.
{m,n}Matches at least m times, but no more than n times.
\nn is a number between 1 and 9. Matches the nth subexpression found within ( ) before encountering \n.
\dMatches a digit character.
\DMatches a nondigit character.
\wMatches a word character.
\WMatches a nonword character.
\sMatches a whitespace character.
\Smatches a non-whitespace character.
*?Matches the preceding pattern zero or more occurrences.
+?Matches the preceding pattern one or more occurrences.
??Matches the preceding pattern zero or one occurrence.
{n}?Matches the preceding pattern n times.
{n,}?Matches the preceding pattern at least n times.
{n,m}?Matches the preceding pattern at least n times, but not more than m times.
[..]Matches one collation element that can be more than one character.
[=character_class=]Represents an equivalence class. It matches all characters with the same collation value, including itself.
[:character_class:]Represents a character class that matches all characters belonging to that class.

List of standard class name

Character Class NameMeaning
alnumAlphanumeric characters
alphaAlphabetic characters
blankWhitespace characters
cntrlControl characters
digitDigit characters
graphGraphic characters
lowerLowercase alphabetic characters
printGraphic or space characters
punctPunctuation characters
spaceSpace, tab, newline, and carriage return
upperUppercase alphabetic characters
xdigitHexadecimal digit characters