Re: [GENERAL] Regex problems

From: "chris yambo" <cyambo(at)thoughtbubble(dot)com>
To: PostgreSQL Mailing List <pgsql-general(at)postgreSQL(dot)org>
Subject: Re: [GENERAL] Regex problems
Date: 1998-10-06 19:23:31
Message-ID: 361A6E33.41B4BBEA@thoughtbubble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

If you want to select all the employes whose last name begins with a C
you would use this regex '^C'. The ^ signifys the beginning of the
string and you dont need a * after the C because a * means _zero_ or
more matches, and that is the problem you were having

chris yambo
thoughtbubble productions
http://www.thoughtbubble.com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message anil 1998-10-07 02:40:08 SQL Help
Previous Message Charles Curley 1998-10-06 19:09:05 [GENERAL] Regex problems