regexp_extract()
时间: 2023-09-17 19:14:00 浏览: 94
regexp资料
regexp_extract()是一种在SQL中用于提取字符串中匹配某个模式的子字符串的函数。它的语法是regexp_extract(string, pattern, index)。其中,string是要进行匹配的字符串,pattern是要匹配的正则表达式模式,index是匹配到的子字符串的索引值。
举个例子,如果我们有一个字符串'hitdecisiondlist',我们可以使用regexp_extract('hitdecisiondlist','(i)(.*?)(e)',0)来匹配并提取出字符串中第一个'i'和第一个'e'之间的子字符串。如果我们将index参数设置为1,那么就会提取出第一个'i'和第一个'e'之间的子字符串;如果index参数设置为2,那么就会提取出第二个'i'和第二个'e'之间的子字符串。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [正则表达式regexp_extract 函数](https://blog.csdn.net/weixin_43383676/article/details/101020406)[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 ]
阅读全文