MySQL regexp_instr()函数

本文概述

  • 句法
  • 例子1
  • 例子2
【MySQL regexp_instr()函数】MySQL Regexp_instr()函数用于模式匹配。它从给定的字符串返回子字符串的索引值。如果找不到匹配项, 则此函数返回0, 否则返回1。
句法
select regexp_instr('str', 'pattern', ['position']);

例子1
select regexp_instr('BCA jhon', 'BCA')

输出
MySQL regexp_instr()函数

文章图片
例子2
select regexp_instr('BCA jhon', 'BCA', 1)

输出
MySQL regexp_instr()函数

文章图片

    推荐阅读