REGEXP_INSTR
时间: 2023-09-08 18:14:29 浏览: 165
REGEXP_INSTR是Oracle数据库中的一个函数,它用于在一个字符串中查找一个模式,并返回该模式的位置。它的语法是:
REGEXP_INSTR(source_char, pattern [, position [, occurrence [, return_option [, match_parameter ]]]])
其中,source_char是要搜索的字符串,pattern是要匹配的模式。position是可选的参数,指定开始搜索的位置,默认为1。occurrence也是可选参数,指定要返回的匹配项的序号,默认为1。return_option是可选参数,指定返回结果的选项,默认为0。match_parameter也是可选参数,指定匹配的方式,默认为区分大小写。
例如,如果我们使用REGEXP_INSTR函数来在字符串"World filled with love"中查找"with"这个模式,我们可以执行以下查询:
SELECT REGEXP_INSTR('World filled with love', 'with', 1, 1, 0, 'i') FROM dual;
这将返回3,表示"with"这个模式在字符串中的位置。请注意,这个函数是区分大小写的,所以在搜索时要注意大小写的匹配。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [Oracle的REGEXP_INSTR函数简单用法](https://blog.csdn.net/itmyhome/article/details/50379729)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文