我有一个如下所示的示例源字符串,它采用管道分隔格式,因为值obr可以在任何地方。我需要从obr的第一次出现中获取管道的第二个值。因此,对于以下源字符串,预期将是,
源字符串:
select 'asd|dfg|obr|1|value1|end' text from dual
union all
select 'a|brx|123|obr|2|value2|end' from dual
union all
select 'hfv|obr|3|value3|345|pre|end' from dual
预期输出:
value1
value2
value3
我已经在 oracle sql 中尝试了以下正则表达式,但它不能正常工作。
with t as (
select 'asd|dfg|obr|1|value1|end' text from dual
union all
select 'a|brx|123|obr|2|value2|end' from dual
union all
select 'hfv|obr|3|value3|345|pre|end' from dual
)
select text,to_char(regexp_replace(text,'*obr\|([^|]*\|)([^|]*).*$', '\2')) output from t;
当字符串以 OBR 开头时它工作正常,但是当 OBR 像上面的示例一样位于中间时它不能正常工作。
任何帮助,将不胜感激。