前言
正则表达式已经在很多软件中得到广泛的应用,包括*nix(linux, unix等),hp等操作系统,php,c#,java等开发环境。
本文主要介绍了关于oracle中正则表达式的使用方法,下面话不多说了,来一起看看详细的介绍。
oracle使用正则表达式离不开这4个函数:regexp_like、regexp_substr、regexp_instr、regexp_replace。
regexp_like
该函数只能用于条件表达式,和 like 类似,但是使用的正则表达式进行匹配
//查询所有包含小写字母或者数字的记录。 select * from fzq where regexp_like(value,'^([a-z]+|[0-9]+)$');
regexp_substr
该函数和 substr 类似,用于拾取合符正则表达式描述的字符子串,该函数的定义如下
function regexp_substr(string, pattern, position, occurrence, modifier) - string 输入的字符串 - pattern 正则表达式 - position 标识从第几个字符开始正则表达式匹配。(默认为1) - occurrence 标识第几个匹配组。(默认为1) - modifier 取值范围: i:大小写不敏感; c:大小写敏感; n:点号 . 不匹配换行符号; m:多行模式; x:扩展模式,忽略正则表达式中的空白字符。
下面是一些实例
--检索中间的数字 select regexp_substr(a,'[0-9]+') from test_reg_substr where regexp_like(a, '[0-9]+'); --检索中间的数字(从第一个字母开始匹配,找第2个匹配项目) select nvl(regexp_substr(a,'[0-9]+',1, 2), '-') as a from test_reg_substr where regexp_like(a, '[0-9]+');
regexp_instr
该函数和 instr 类似,用于标定符合正则表达式的字符子串的开始位置,oracle数据库中的regexp_instr函数的语法是
regexp_instr (source_char, pattern [, position [, occurrence [, return_option [, match_parameter ] ] ] ] ) - source_char 搜索值的字符表达式 - pattern 正则表达式 - position 可选。搜索在字符串中的开始位置。如果省略,则默认为1,这是字符串中的第一个位置。 - occurrence 可选。它是模式字符串中的第n个匹配位置。如果省略,默认为1。 - return_option 可选 指定oracle返回的位置, 0那么oracle将返回出现的第一个字符的位置。这是默认的, 1则oracle返回字符之后发生的位置。 - match_parameter 取值范围: i:大小写不敏感; c:大小写敏感; n:点号 . 不匹配换行符号; m:多行模式; x:扩展模式,忽略正则表达式中的空白字符。
下面是一些实例
--找到字符串中的第一个”e”字的位置 --返回2 select regexp_instr ('hello itmyhome', 'e') from dual; --“1”为开始位置 “2”是搜索第二个匹配的,”0”是return_option --返回出现的第一个字符位置“c”是区分大小写 ,所以将返回13 select regexp_instr ('my is itmyhome', 'm', 1, 2, 0, 'c') from dual; -- select regexp_instr ('world filled with love', 'with', 1, 1, 0, 'i') from dual; --匹配多个备选 select regexp_instr ('itmyhome', 'a|i|o|e|u') from dual;
regexp_replace
该函数和 replace 类似,用于替换符合正则表达式的字符串,oracle数据库中的regexp_replace函数的语法是
regexp_replace(source_char, pattern [, replace_string [, position [, occurrence [, match_parameter ] ] ] ]) - source_char 搜索值的字符表达式 - pattern 正则表达式 - replace_string 可选。匹配的模式将被替换replace_string字符串。 如果省略replace_string参数,将删除所有匹配的模式,并返回结果字符串。 - position 可选。在字符串中的开始位置搜索。如果省略,则默认为1。 - occurrence 它是模式字符串中的第n个匹配位置。如果省略,默认为1。 - match_parameter i:大小写不敏感; c:大小写敏感; n:点号 . 不匹配换行符号; m:多行模式; x:扩展模式,忽略正则表达式中的空白字符。
如下是一些实例
--字符串替换 --luck is my network id select regexp_replace ('itmyhome is my network id', '^(\s*)', 'luck') from dual; --此示例将所指定的\d数字将以#字符替换 --result: '#, #, and ## are numbers in this example' select regexp_replace ('2, 5, and 10 are numbers in this example', '\d', '#') from dual;
总结
以上就是这篇文章的全部内容了,本文还有许多不足,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对www.887551.com的支持。