Re: SIMILAR TO

Поиск
Список
Период
Сортировка
От Rommel the iCeMAn
Тема Re: SIMILAR TO
Дата
Msg-id AANLkTi=pfXSG466BkjcS72y_J3vF7gMPwo2fvbBHWAbG@mail.gmail.com
обсуждение исходный текст
Ответ на SIMILAR TO  (Rommel the iCeMAn <icecrew@gmail.com>)
Список pgsql-sql
Thank you very much. I figured it was something simple but I am not
proficient at regular expressions. Thanks again.

-----Original Message-----
From: Tom Lane [mailto:tgl@sss.pgh.pa.us]
Sent: Saturday, October 16, 2010 10:30 AM
To: Rommel the iCeMAn
Cc: pgsql-sql@postgresql.org
Subject: Re: [SQL] SIMILAR TO

Rommel the iCeMAn <icecrew@gmail.com> writes:
> I use the following code to detect alphanumeric strings:

> IF _my_variable SIMILAR TO '^[a-zA-Z0-9]+$' THEN
>         // do stuff here
> END IF;

> In pg8.4 this worked perfectly. I upgraded to pg9.0 and it no longer
> works. From the release notes it appears that the behavior of SIMILAR
> TO has changed in pg9.0. My question is, how do I modify my code so
> that it works in 9.0?

Drop the ^ and $; they are incorrect for SIMILAR TO.
        regards, tom lane


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: SIMILAR TO
Следующее
От: Andreas
Дата:
Сообщение: insert into table from list or array ?