array_agg to array - Mailing list pgsql-general

From Philipp Kraus
Subject array_agg to array
Date
Msg-id CDD491B7-CD8D-4CA4-9F20-F62A73E1EBE7@tu-clausthal.de
Whole thread Raw
Responses Re: array_agg to array  (Pavel Stehule <pavel.stehule@gmail.com>)
Re: array_agg to array  (Torsten Förtsch <tfoertsch123@gmail.com>)
List pgsql-general
Hello,

I have got a function with a reg expr to split chemical formulas e.g. H2O -> H2 O.

CREATE OR REPLACE FUNCTION daimon.text2sumformula(text) RETURNS text[] AS $$
    select array_agg(i::text) as e from ( select unnest( regexp_matches( $1,
'[0-9]*[A-Z][a-z]?\d*|\((?:[^()]*(?:\(.*\))?[^()]*)+\)\d+','g') ) ) i; 
$$ LANGUAGE SQL IMMUTABLE;

For H2O I get an array with {(H2),(O)}
How I can return the inner elements as text, I would like to get {H2,O} without round brackets?

Thanks

Phil




pgsql-general by date:

Previous
From: tango ward
Date:
Subject: Re: Control PhoneNumber Via SQL
Next
From: Pavel Stehule
Date:
Subject: Re: array_agg to array