mosheg
Administrator
Please take this survey to help us learn more about how you use third party tools. Your input is greatly appreciated!
mosheg Administrator
Reactions
-
Re: Delete specific word using regexp_replace
SELECT REGEXP_REPLACE('[110 Companies .co]','\.co'); REGEXP_REPLACE ------------------ [110 Companies ] (1 row) And if you want to delete only the last occurrence of '.co' do: SELECT REGEXP_REPLACE('… (View Post)0