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

regexp_replace:inserisce uno spazio in una stringa se non è già presente

Ecco una possibile soluzione utilizzando il REGEXP_REPLACE funzione:

-- Match the string "st." followed by zero or more spaces and a word character,
-- replace it with "st." followed by exactly one space and the captured character
select city,
       regexp_replace(city, 'st\.\s*(\w)', 'st. \1' ) as city_formatted
  from t
 order by city;

Uscita:

CITY               CITY_FORMATTED      
------------------ --------------------
st.   triple space st. triple space    
st.  double space  st. double space    
st. ulrich         st. ulrich          
st.paul            st. paul