Re: proposal: support empty string as separator for string_to_array

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: Merlin Moncure <mmoncure(at)gmail(dot)com>
Cc: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: proposal: support empty string as separator for string_to_array
Date: 2009-07-25 14:30:37
Message-ID: 162867790907250730o43b25956lc76e0ffac0ebe021@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

2009/7/25 Merlin Moncure <mmoncure(at)gmail(dot)com>:
> On Fri, Jul 24, 2009 at 11:40 PM, Pavel Stehule<pavel(dot)stehule(at)gmail(dot)com> wrote:
>> Hello
>>
>> I have one idea, that should simplify string to char array
>> transformation. The base is idea: between every char is empty string,
>> so empty string is regular separator for string_to_array function.
>> This behave is inversion of array_to_string function behave:
>>
>> postgres=# select array_to_string(array['a','b','c'],'');
>>  array_to_string
>> -----------------
>>  abc
>> (1 row)
>>
>> postgres=# select string_to_array('abc','');
>>  string_to_array
>> -----------------
>>  {a,b,c}
>> (1 row)
>
> postgres=# select regexp_split_to_array('abc', '');
>  regexp_split_to_array
> -----------------------
>  {a,b,c}
> (1 row)

I know - but regexp is not necessary - simply function for string
decomposition should be faster and little bit more intuitive. Not
everybody understand reg exp.

Pavel
>
> :-)
>
> merlin
>

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2009-07-25 14:56:50 Re: autogenerating headers & bki stuff
Previous Message Merlin Moncure 2009-07-25 14:15:02 Re: proposal: support empty string as separator for string_to_array