我正在使用regexp来获取特殊字符':'后出现的所有子字符串 -
给定字符串 -
创建框的原因:我完成的订单(100005 - 错误格式: EmpId的值ABC000001606无效)
预期产出 -
由我完成的订单(100005 - 错误格式: EmpId的值ABC000001606无效)
我试试这个但不按要求工作 -
SELECT REGEXP_SUBSTR('创建方框的原因:由我完成的订单 (100005 - 错误格式:EmpId的值ABC000001606无效)', ':[^])')“REGEXPR_SUBSTR”FROM DUAL;
你能帮忙吗?
答案 0 :(得分:2)
这有两种方法。
这个请求使用REGEXP_SUBSTR。
with c as (select 'Reason for creating the box: Order done by me (100005 - Error Format: Value ABC000001606 of EmpId is not valid)' str from dual)
SELECT substr(REGEXP_SUBSTR(c.str, ':[^)]+'),2) "REGEXPR_SUBSTR" FROM c;
这个使用substr + instr + length,如果你有一个大数据集,它会有更好的性能。
with c as (select 'Reason for creating the box: Order done by me (100005 - Error Format: Value ABC000001606 of EmpId is not valid)' str from dual)
select substr(c.str, instr(c.str, ':')+1, length(c.str)-1)
from c;
这两个都有一个WITH子句,使示例查询更具可读性。