Oracle
 sql >> Database >  >> RDS >> Oracle

Cerca in una stringa un modello di espressione regolare e sostituisci ogni occorrenza come derivazione di se stessa in Oracle SQL

Non regexp ma funziona.

select  xmlcast( xmlquery('for $w in tokenize($text," ") return
    if(fn:matches($w,"[0-9]{1,3}")) then (xs:decimal($w)+$offset) else ($w)'
                passing 'i want to increase those numbers 20 and 15' as "text", 5 as "offset" returning content) as varchar2(1000))
  from dual;

La soluzione sta cercando numeri interi nel testo. Per decimale l'espressione regolare interna dovrebbe essere estesa.

\d e [:digit:] non sono supportati da xmlquery