如何使用 REGEXP_SUBSTR() 从 oracle 中的表中提取字符串的某些部分条件不包括第一个空格的前一部分

问题描述

假设我们有表格

with table1 
as
(
select 'CS issue-result info' col1
from dual
union all
select 'ITP decile info' col1
from dual
union all
select 'DFSD fdb-quentile-info' col1
from dual
union all
select 'EUR transcription info' col1
from dual
union all
select 'ABPK stability control info' col1
from dual
)
select *
from table1;

enter image description here

我的预期输出如下

col1
issue-result info
decile info
fdb-quentile-info
transcription info
stability control info

enter image description here

条件:从字符串前面的第一个空格部分中删除

解决方法

我认为您想删除字符串的第一个“元素”。为此,您可以使用 regexp_replace():

select t.*,regexp_replace(col1,'^[^ ]+ ','')
from table1 t;
,

您可以尝试将 REGEXP_SUBSTR 与捕获组一起使用:

SELECT REGEXP_SUBSTR(col1,' (.*)$',1,NULL,1) AS col1
FROM table1;
,

感谢您的测试用例!

我不会用正则表达式这样做;对于大型数据集,这可能比简单的 substr + instr 组合慢:

 <CTE here>
 19  select substr(col1,instr(col1,' ') + 1) result
 20  from table1;

RESULT
---------------------------
issue-result info
decile info
fdb-quentile-info
transcription info
stability control info

SQL>

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...