Re: regexp_matches for digit - Mailing list pgsql-general

From Andy Colson
Subject Re: regexp_matches for digit
Date
Msg-id 559EA664.70302@squeakycode.net
Whole thread Raw
In response to regexp_matches for digit  (Ramesh T <rameshparnanditech@gmail.com>)
List pgsql-general
On 7/9/2015 11:24 AM, Ramesh T wrote:
> Hi,
>            in oracle regexp_like(entered
> date,'[[:digit:]]{4}-[[:digit:]]{2}-[[:digit:]]{2}','i')
>
> for postgres i have regexp_matches ,But i need how to match [:digit:] in
> postgres when we pass date..?
> any help

\d

per:
http://www.postgresql.org/docs/devel/static/functions-matching.html

# select 1 where '1234-56-78' ~ '\d{4}-\d{2}-\d{2}';
  ?column?
----------
         1
(1 row)



pgsql-general by date:

Previous
From: Andy Colson
Date:
Subject: Index Only Scan vs Cache
Next
From: Chris Mair
Date:
Subject: Re: regexp_matches for digit