Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

regexp_replace:insira um espaço em uma string se ainda não estiver presente


Aqui está uma solução possível usando o REGEXP_REPLACE função:
-- 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;

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