本文概述
MySQL Regexp_instr()函数用于模式匹配。它从给定的字符串返回子字符串的索引值。如果找不到匹配项, 则此函数返回0, 否则返回1。
句法
select regexp_instr('str', 'pattern', ['position']);
例子1
select regexp_instr('BCA jhon', 'BCA')
输出
例子2
select regexp_instr('BCA jhon', 'BCA', 1)
输出
评论前必须登录!
注册