Re: search and replace

Поиск
Список
Период
Сортировка
От Josh Berkus
Тема Re: search and replace
Дата
Msg-id 200212131213.27300.josh@agliodbs.com
обсуждение исходный текст
Ответ на search and replace  ("Gallamine" <iam@gallamine.com>)
Список pgsql-novice
Gallamine,

> I have a database with text in it (articles) and in the article I have <img>
> tags for pictures in HTML. I want to go through the DB and replace the urls
> of the images. How would I go about doing that? I want to grab all the text
> from the articles table and replace the string "http://dopey.lulupress.com"
> with "http://faramir/".
> Any hints?

Here's what I did:

1) compiled Postgres with Perl support (--with-perl)
2) createlang plperl (from the command line, as postgres)
3) Created this simple Perl function:

CREATE FUNCTION strswap(
    TEXT, VARCHAR, VARCHAR )
RETURNS TEXT AS '
my($the_text, $look_up, $replace_with) = @_;
$the_text =~ s:$look_up:$replace_with:eg ;
return $the_text;
' LANGUAGE 'plperl' WITH (ISCACHABLE, ISSTRICT);

Then you can use strswap to swap all of this stuff out.

--
-Josh Berkus
 Aglio Database Solutions
 San Francisco


В списке pgsql-novice по дате отправления:

Предыдущее
От: "Gallamine"
Дата:
Сообщение: formatting current_timestamp
Следующее
От: Steve Crawford
Дата:
Сообщение: Re: formatting current_timestamp