In my PostgreSQL I want to replace all characters (;<>) occurrences in a string.
My query:
update table_name set text = regexp_replace(text, '/[(;<>)]+/g', '');
I think my regexp is wrong. Can anyone help me out with it?
|
In my PostgreSQL I want to replace all characters My query:
I think my regexp is wrong. Can anyone help me out with it? |
||||
|
|
|
Use the much faster
Every character in the second parameter that has no counterpart in the third parameter is replaced with nothing. The regular expression solution could look like this:
Essential element is the 4th parameter Hint on
|
Actually, the OP's regex pattern is correct (it does have /g flag), it should just have been written a bit different in Postgres. Anyway, very good point regarding translate. – raina77ow Feb 19 at 8:57 |
|
@raina77ow: Yes, just a matter of syntax for the regular expression. I added the parenthesis to my example, seems the OP wants to replace those, too. – Erwin Brandstetter Feb 19 at 9:15 |