Re: Method to detect certain characters in column?

From: "Ian Meyer" <ianmmeyer(at)gmail(dot)com>
To: "pgsql-general General" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Method to detect certain characters in column?
Date: 2008-06-23 23:48:38
Message-ID: b54105080806231648o542efd1ahb6b3d17977cfdbd9@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Ah, so I forgot to mention the one caveat to this (sorry!) was there
was a ton of punctuation/spaces and other ilk.. so this is what I came
up with:

bco=# select name from member where not (name ~ '^[A-Za-z0-9[:punct:] ]*$');
name
----------------------
Señorita Lolita
Long Pig
täkäurgh
blåbärsöl
fuchér MkII
fuchér ver2.0
Gûm-ishi Ashi Gurum
kängnäve
Fuchér-version 2.1
fuchÃ(c)r

Thank you everyone for your help.. that looks to be the correct amount
I was looking for.

Ian
On Mon, Jun 23, 2008 at 7:28 PM, Steve Atkins <steve(at)blighty(dot)com> wrote:
>
> On Jun 23, 2008, at 1:58 PM, Ian Meyer wrote:
>
>> So I have a column that contains usernames that have characters such
>> as Ã(c)(R), for example: fuchÃ(c)r.. is there any way to find names
>> with non A-Za-z0-9?
>
> ... WHERE column ~* '[^a-z0-9]'
>
> Cheers,
> Steve
>
>
> --
> Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Michael Shulman 2008-06-24 01:19:06 tables referenced from insert...returning
Previous Message Craig Ringer 2008-06-23 23:35:47 Re: Update Join Query