Re: how to do a find and replace - Mailing list pgsql-sql

From A. Kretschmer
Subject Re: how to do a find and replace
Date
Msg-id 20051118061548.GB15746@webserv.wug-glas.de
Whole thread Raw
In response to how to do a find and replace  (Dawn Buie <dawn@squeegeemedia.com>)
List pgsql-sql
am  17.11.2005, um 14:51:05 -0800 mailte Dawn Buie folgendes:
> Hello-
> 
> I have a column of data with the wrong prefix for many items.

If you have 8.1? If yes:

> 
> The wrong entries are entered ' /0/v.myimage.jpg'
> While the correct ones are ' /0/myimage.jpg'
> 
> 
> I need to remove all the 'v.' characters from this column.a


test=# select * from foo;       loc
------------------- /0/v.myimage.jpg
(1 row)

test=# update foo set loc = regexp_replace(loc, '/v\.', '/');
UPDATE 1
test=# select * from foo;      loc
----------------- /0/myimage.jpg
(1 row)



If no:

a) Upgrade now!
b) write a funcion with plperl for the regexp_replace


HTH, Andreas
-- 
Andreas Kretschmer    (Kontakt: siehe Header)
Heynitz:  035242/47212,      D1: 0160/7141639
GnuPG-ID 0x3FFF606C http://wwwkeys.de.pgp.net===    Schollglas Unternehmensgruppe    === 


pgsql-sql by date:

Previous
From: Hélder M. Vieira
Date:
Subject: Re: how to do a find and replace
Next
From: "Aftab Alam"
Date:
Subject: query