PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como obter substring da 4ª ocorrência de um caractere até o final da string fornecida em PSQL


Você pode usar uma expressão regular
with example(str) as (
    values('/this/is/a/given/string/test.file')
)

select regexp_replace(str, '(/.*?){4}', '')
from example;

     regexp_replace     
------------------------
 given/string/test.file
(1 row) 

ou a função string_to_array() :
select string_agg(word, '/' order by ord)
from example,
unnest(string_to_array(str, '/')) with ordinality as u(word, ord)
where ord > 4;

Leia também Como encontrar a terceira ocorrência de um padrão em uma linha .