0

I have some data with a field that looks somewhat like this:

(1234) abcd, efgh (5678)

I need to remove the characters inside the brackets, so that my output looks like this:

abcd, efgh

I tried using REGEXP_REPLACE("(1234) abcd, efgh (5678)","[(.*?)]" , ""), this however only removes the brackets and leaves the characters inside. I am not really familiar with regular expressions. Can you help? Thanks in advance!

0 Answers0