Re: how to test string against regular expression contained in postgresql

From: CoL <col(at)mportal(dot)hu>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: how to test string against regular expression contained in postgresql
Date: 2004-03-24 12:50:11
Message-ID: c3s060$1k0m$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

hi,

Joe Bordes wrote:

> Hi All,
>
> I have a table which contains a field with regular expressions. I want
> to test a given string against this field to obtain the resulting
> records but I am doing something wrong and cannot find out what.
>
> table
> os_regexp os_name
> ------------- -----------
> win.*9x windows
> linux linux
> etc...
>
> select os_name from table where 'windows9x' ~ os_regexp;
> ERROR: invalid regular expression: empty expression or subexpression.

create a function for that.

create or replace function osregexp(varchar,varchar) returns boolean as
' select $1 ~ $2; 'language sql immutable;

SELECT osregexp('windows9x','win.*9x');
osregexp
----------
t

C.

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Christian Pöcher 2004-03-24 13:39:54 Re: Object Oriented features in PostgreSQL
Previous Message MagnuM 2004-03-24 10:35:08 Re: Upgrading PostgreSQL