quoted csv to array pattern

From: Michael Moore <michaeljmoore(at)gmail(dot)com>
To: postgres list <pgsql-sql(at)postgresql(dot)org>
Subject: quoted csv to array pattern
Date: 2016-05-25 23:25:23
Message-ID: CACpWLjN-M+9bToTdmwYUgTfbpEYBCshYZDpvLLjUhO3eK1xA0w@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I am trying to use
SELECT regexp_split_to_table('''quick brown'', ''fox'' ''over, dog''',
',');

I need the output to be:

> quick brown
> fox
> over, dog

Google was no help.
Thanks,
Mike

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message David G. Johnston 2016-05-25 23:34:58 Re: quoted csv to array pattern
Previous Message David G. Johnston 2016-05-25 19:43:25 Re: My "variable number of bind variables for dynamic SQL" solution. Comments?