本文概述
MySQL regexp_substr()函数用于模式匹配。它从给定的字符串返回子字符串。
句法
select regexp_substr('str', 'match_type', occurrence, position, );
例子1
select regexp_substr('java t point', '[a-z]+', 2, 3);
输出
例子2
select regexp_substr('my sql function', '[a-z]+', 1, 3);
输出
评论前必须登录!
注册