Re: POSIX Regular Expression question - Mailing list pgsql-sql

From A. Kretschmer
Subject Re: POSIX Regular Expression question
Date
Msg-id 20050905141302.GE29043@webserv.wug-glas.de
Whole thread Raw
In response to POSIX Regular Expression question  (Aldor <an@mediaroot.de>)
List pgsql-sql
am  05.09.2005, um 14:57:06 +0100 mailte Aldor folgendes:
> Hi,
> 
> I want to get out a string only with characters A-Za-z.

like this?

test=# select * from foo;  s
--------123abzabz123
(3 rows)

test=# select * from foo where s ~ '^[a-zA-Z]+$'; s
-----abz
(1 row)


> Any idea how to do this in Postgres with POSIX Regex?

The term '[a-zA-Z]+' means: this chars at least one times, the '^' and
'$' are anchors to the begin and end of the line.

Hope that helps,


Regards, Andreas
-- 
Andreas Kretschmer    (Kontakt: siehe Header)
Heynitz:  035242/47212,      D1: 0160/7141639
GnuPG-ID 0x3FFF606C http://wwwkeys.de.pgp.net===    Schollglas Unternehmensgruppe    === 


pgsql-sql by date:

Previous
From: Aldor
Date:
Subject: POSIX Regular Expression question
Next
From: Michael Fuhr
Date:
Subject: Re: POSIX Regular Expression question