Re: opposite of chr(int)

Поиск
Список
Период
Сортировка
От Richard Broersma
Тема Re: opposite of chr(int)
Дата
Msg-id CABvLTWFzir-4h0QrK=2BxD3PmBrnx=gNZkZQTgVY7BpcfCF5QA@mail.gmail.com
обсуждение исходный текст
Ответ на Re: opposite of chr(int)  (Henry Drexler <alonup8tb@gmail.com>)
Ответы Re: opposite of chr(int)
Список pgsql-novice
On Thu, Oct 6, 2011 at 2:49 PM, Henry Drexler <alonup8tb@gmail.com> wrote:
> So it is saying look past seven characters "^.{7}" and check that next
> character if it is an interger "\d"
> Is that a correct narrative for what is going on?

Well almost.  I read it as:

Test to see if a pattern exists where

'^'  from the beginning of the text string
'.{7}' match exactly seven characters what ever they happen to be
'\d'  next match exact one numeric character
and then if found ignore the remainder of the string.


--
Regards,
Richard Broersma Jr.

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

Предыдущее
От: Henry Drexler
Дата:
Сообщение: Re: opposite of chr(int)
Следующее
От: Henry Drexler
Дата:
Сообщение: Re: opposite of chr(int)