I am trying to return all characters within brackets from a string field in postgres:
This function seems to work well:
select substring('foo bar [foobar] foo' from '%#"f%b#"%' for '#');
substring
-----------
foob
It will not work with an open bracket character:
select substring('foo bar [foobar] foo' from '%#"[%]#"%' for '#');
substring
-----------
The close bracket works fine, I've tried backslash, double backslash, period, single quote
You should escape brackets as they are metacharacters:
or
From the documentation: