Re: Select with Regular Expressions - Mailing list pgsql-novice

From Michael Fuhr
Subject Re: Select with Regular Expressions
Date
Msg-id 20060301042440.GA16313@winnie.fuhr.org
Whole thread Raw
In response to Select with Regular Expressions  (Peter Weinzierl <peter.weinzierl@gmail.com>)
List pgsql-novice
On Sun, Feb 26, 2006 at 11:04:16AM +0100, Peter Weinzierl wrote:
> I want to fetch 'my (search) string' from the table
>
> select bar from table where bar ~*' my (search) string';
>
> This didn't work out so I tried:
>
> select bar from table where bar~*'my \(search\) string';
>
> But this only returned:
>
> 'my search string'

With single quotes you'll need to add another layer of escaping
because the string parser is parsing the backslashes before the
string is interpreted as a regular expression.  Example:

test=> SELECT * FROM foo;
 id |        bar
----+--------------------
  1 | my search string
  2 | my (search) string
(2 rows)

test=> SELECT 'my \(search\) string';
      ?column?
--------------------
 my (search) string
(1 row)

test=> SELECT * FROM foo WHERE bar ~* 'my \(search\) string';
 id |       bar
----+------------------
  1 | my search string
(1 row)

test=> SELECT 'my \\(search\\) string';
       ?column?
----------------------
 my \(search\) string
(1 row)

test=> SELECT * FROM foo WHERE bar ~* 'my \\(search\\) string';
 id |        bar
----+--------------------
  2 | my (search) string
(1 row)

If you're using 8.0 or later then you can use dollar quotes to avoid
the need for an extra layer of escaping:

test=> SELECT $$my \(search\) string$$;
       ?column?
----------------------
 my \(search\) string
(1 row)

test=> SELECT * FROM foo WHERE bar ~* $$my \(search\) string$$;
 id |        bar
----+--------------------
  2 | my (search) string
(1 row)

You'll also have to consider your programming language's string
parsing, which might necessitate yet another layer of escaping.

--
Michael Fuhr

pgsql-novice by date:

Previous
From: Michael Fuhr
Date:
Subject: Re: Squences with letters aswell as numbers
Next
From:
Date:
Subject: Re: Newbie basic and silly question