Re: please help me on regular expression

Поиск
Список
Период
Сортировка
От msi77
Тема Re: please help me on regular expression
Дата
Msg-id 21331265197116@webmail115.yandex.ru
обсуждение исходный текст
Ответ на please help me on regular expression  (Tena Sakai <tsakai@gallo.ucsf.edu>)
Ответы Re: please help me on regular expression  (Tena Sakai <tsakai@gallo.ucsf.edu>)
Список pgsql-sql
Why not to use

select subjectid, height from tsakai.phenowhere height like '%.%';

?

> Hi everybody,
> I need a bit of help on postgres reqular expression.
> With a table of the following definition:
> Table "tsakai.pheno"
> Column | Type | Modifiers
> -----------+-------------------+-----------
> subjectid | integer | not null
> height | character varying | not null
> race | character varying | not null
> blood | character varying | not null
> I want to catch entries in height column that includes a
> decimal point. Here's my attempt:
> select subjectid, height
> from tsakai.pheno
> where height ~ '[:digit:]+.[:digit:]+';
> Which returns 0 rows, but if I get rid of where clause,
> I get rows like:
> subjectid | height
> -----------+--------
> 55379 | 70.5
> 55383 | 69
> 55395 | 70
> 56173 | 71
> 56177 | 65.5
> 56178 | 70
> . .
> . .
> And when I escape that dot after first plus sign with a backslash,
> like this:
> where height ~ '[:digit:]+\.[:digit:]+';
> then I get complaint:
> WARNING: nonstandard use of escape in a string literal
> LINE 3: where height ~ '[:digit:]+\.[:digit:]+';
> ^
> HINT: Use the escape string syntax for escapes, e.g., E'\r\n'.
> From there, it was a downward spiral descent...
> Please help.
> Thank you.
> Regards,
> Tena Sakai
> tsakai@gallo.ucsf.edu
> 

Здесь спама нет http://mail.yandex.ru/nospam/sign


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

Предыдущее
От: Tena Sakai
Дата:
Сообщение: Re: please help me on regular expression
Следующее
От: Tena Sakai
Дата:
Сообщение: Re: please help me on regular expression