gpt4 book ai didi

sql - Oracle regexp_substr - 如何提取不包括标记字符的文本

转载 作者:行者123 更新时间:2023-12-01 13:57:58 28 4
gpt4 key购买 nike

我有一个以这种格式出现的字符串

Transaction 'pqr_111_xyz_222(Aaaa Bbbb Cccc - 3333)' failed due to connection error

我需要提取 ' 和 ( 之间的文本。

本例中为 pqr_111_xyz_222。

以下查询返回'pqr_111_xyz_222(

select regexp_substr('Transaction ''pqr_111_xyz_222(Aaaa Bbbb Cccc - 3333)'' failed due to connection error', '''.+\(') from dual;

我如何修改正则表达式(或使用可以包含在这个单一查询中的任何其他技术)以便排除标记 ' 和 ( 而我只得到 pqr_111_xyz_222

最佳答案

你可以使用 REGEXP_REPLACE相反:

regexp_replace('Transaction ''pqr_111_xyz_222(Aaaa Bbbb Cccc - 3333)'' failed due to connection error', '.*''(.+)\(.*', '\1')

关于sql - Oracle regexp_substr - 如何提取不包括标记字符的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8360011/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com