Re: Replacing characters in a string

Поиск
Список
Период
Сортировка
От Michele Petrazzo - Unipex
Тема Re: Replacing characters in a string
Дата
Msg-id 4C8F5BC1.3030703@unipex.it
обсуждение исходный текст
Ответ на Replacing characters in a string  (Luís de Sousa <luis.a.de.sousa@gmail.com>)
Ответы Re: Replacing characters in a string  (Luís de Sousa <luis.a.de.sousa@gmail.com>)
Список pgsql-general
Luís de Sousa ha scritto:
> Hello everyone,
>
> I need to replace all occurrences of a certain character in a string.
> For that I'm using regexp_replace, but so far I only managed to
> replace the first character, here's an example:
>
>> SELECT regexp_replace('xaxx', 'x', 'e');
>   regexp_replace
> ----------------
>   eaxx
> (1 row)
>
> But the result I'd need is 'eaee'. How can I do it?
>

Using the right function? :)

test=# SELECT replace('xaxx', 'x', 'e');
  replace
---------
  eaee
(1 row)

Your usage involving regexp!

P.s. google for "replace string postgresql"  and I'm feeling lucky

> Thanks,
>
> Luís
>

Michele


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

Предыдущее
От: Sergey Konoplev
Дата:
Сообщение: Re: Replacing characters in a string
Следующее
От: Bill Moran
Дата:
Сообщение: Re: What filesystem to use for postgres?