regexp_count
regexp_count 介绍
regexp_count(str, regexp) - 返回正则表达式模式 regexp 在字符串 str 中匹配到的次数。
参数:
- str - 一个字符串表达式。
- regexp - 一个表示正则表达式的字符串。正则表达式字符串应该是一个 Java 正则表达式。
Examples:
> SELECT regexp_count('Steven Jones and Stephen Smith are the best players', 'Ste(v|ph)en');
2
> SELECT regexp_count('abcdefghijklmnopqrstuvwxyz', '[a-z]{3}');
8
Since: 3.4.0