Re: patch adding new regexp functions - Mailing list pgsql-patches

From Andrew Dunstan
Subject Re: patch adding new regexp functions
Date
Msg-id 45D5F1F4.7090502@dunslane.net
Whole thread Raw
In response to Re: patch adding new regexp functions  (David Fetter <david@fetter.org>)
Responses Re: patch adding new regexp functions  (David Fetter <david@fetter.org>)
List pgsql-patches
David Fetter wrote:
>>
>> The question is, what is the use case?  If there is one in Perl, can
>> this proposed function API support it?
>>
>
> Perl makes the following variables available in any regex match,
> although it optimizes some cases for when they're not there:
>
> $1, ... $n (captured matches in parentheses)
> $`         (pre-match)
> $'         (post-match)
> $&         (whole match)
>
>

Use of any of these is notoriously costly, BTW, especially pre-match and
post-match. See perlre man page.

cheers

andrew

pgsql-patches by date:

Previous
From: David Fetter
Date:
Subject: Re: patch adding new regexp functions
Next
From: Peter Eisentraut
Date:
Subject: Re: patch adding new regexp functions