SUBSTRING_INDEX
You are viewing an old version of this article. View
the current version here.
Syntax
SUBSTRING_INDEX(str,delim,count)
Description
Returns the substring from string str
before count occurrences of the
delimiter delim
. If count
is positive, everything to the left
of the final delimiter (counting from the left) is returned. If count
is negative, everything to the right of the final delimiter (counting from the
right) is returned. SUBSTRING_INDEX()
performs a case-sensitive match when
searching for delim
.
If any argument is NULL
, returns NULL
.
Examples
SELECT SUBSTRING_INDEX('www.mariadb.org', '.', 2); +--------------------------------------------+ | SUBSTRING_INDEX('www.mariadb.org', '.', 2) | +--------------------------------------------+ | www.mariadb | +--------------------------------------------+ SELECT SUBSTRING_INDEX('www.mariadb.org', '.', -2); +---------------------------------------------+ | SUBSTRING_INDEX('www.mariadb.org', '.', -2) | +---------------------------------------------+ | mariadb.org | +---------------------------------------------+
See Also
- INSTR() - Returns the position of a string withing a string
- LOCATE() - Returns the position of a string within a string
- SUBSTRING() - Returns a string based on position
Comments
Comments loading...
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.