📅  最后修改于: 2020-11-19 09:16:19             🧑  作者: Mango
MySQL regexp_substr()函数用于模式匹配。它从给定的字符串返回子字符串。
select regexp_substr('str', 'match_type', occurrence, position, );
select regexp_substr('java t point', '[a-z]+', 2, 3);
输出:
select regexp_substr('my sql function', '[a-z]+', 1, 3);
输出: