Re: using replace function - Mailing list pgsql-general

From Tom Lane
Subject Re: using replace function
Date
Msg-id 18661.1575001344@sss.pgh.pa.us
Whole thread Raw
In response to Re: using replace function  ("David G. Johnston" <david.g.johnston@gmail.com>)
Responses Re: using replace function  (Antonio Silva <aolinto.lst@gmail.com>)
List pgsql-general
"David G. Johnston" <david.g.johnston@gmail.com> writes:
> On Thursday, November 28, 2019, Rob Sargent <robjsargent@gmail.com> wrote:
>> I want to replace a string (not a substring) in a field but making sure
>> that the string in the full field.

> I’d probably do something like:
> Select case when a.col = ‘value’ then ‘new value’ else a.col end from a;

Yeah, this.  You could wrap it up in a SQL function if you want the
same level of notational convenience as replace().

Another possibility is regexp_replace with an anchored pattern, but
that would potentially require escaping regexp metacharacters in the
pattern, so the PITA factor is high.  And I doubt it'd be faster than
the CASE solution.

            regards, tom lane



pgsql-general by date:

Previous
From: "David G. Johnston"
Date:
Subject: Re: using replace function
Next
From: Nandakumar M
Date:
Subject: Re: Rows violating Foreign key constraint exists