Replace box characters in Oracle SQL using regex replace

813 Views Asked by At

How to replace the box characters from a table in oracle sql using regexp_replace? I tried to specify the unicode escape sequence of the box character in regexp replace but it doesnt work, is there any other way to replace.

Query used: select regexp_replace(colA,'[\u001A]','') from tableA;

1

There are 1 best solutions below

1
On BEST ANSWER

How about

regexp_replace(colA, unistr('\001A'))

If you just want to replace one string, you don't need a regex, and the standard replace will perform better:

replace(colA, unistr('\001A'))