Re: integer only sposix/regex

From: Steve Atkins <steve(at)blighty(dot)com>
To: pgsql-general List <pgsql-general(at)postgresql(dot)org>
Subject: Re: integer only sposix/regex
Date: 2009-06-16 06:19:24
Message-ID: 583DB421-1935-4D7E-9B6A-BBB115B923D1@blighty.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


On Jun 15, 2009, at 8:21 PM, rodeored wrote:

> I'm trying to search phone numbers for digits. Unfortunately, the
> validation has been sloppy and the numbers are not just numbers, they
> also have dashes and probably other stuff.
> I would like the search to ignore anything but integers
>
> WHERE (a.phone1 ~* '.*626.*' OR a.phone2 ~* '.*626.*' OR a.phone2 ~*
> '.*626.*')

A hideous way would be a.phone1 ~ '6[^0-9]*2[^0-9]*6'

A possibly less hideous way would be regexp_replace(a.phone1,
'[^0-9]+', '') ~ '626'.

Cheers,
Steve

In response to

Browse pgsql-general by date

  From Date Subject
Next Message CM J 2009-06-16 06:56:58 Re: Postgres 8.2 Memory Tuning
Previous Message Sim Zacks 2009-06-16 05:21:55 Re: Custom Fields Database Architecture