From: | hubert depesz lubaczewski <depesz(at)depesz(dot)com> |
---|---|
To: | Anatoli Lau <ailau(at)sharematrix(dot)com> |
Cc: | pgsql-bugs(at)postgresql(dot)org |
Subject: | Re: BUG #4438: regexpression gives the error by working with [ |
Date: | 2008-09-27 07:55:58 |
Message-ID: | 20080927075558.GA7867@depesz.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
On Sat, Sep 27, 2008 at 12:46:31AM +0000, Anatoli Lau wrote:
> select regexp_matches('/a/b[534]', E'(.*)\[([0-9]*)\]');
> always gives the error but
> select regexp_matches('/a/b{534}', E'(.*)\{([0-9]*)\}');
> works good, the problems comes up only when '[' used
it would be good to show what kind of error it shows. i can only guess
that you are running it through psql, and the error you get is:
ERROR: invalid regular expression: parentheses () not balanced
in such case, change "\[" to "\\[":
# select regexp_matches('/a/b[534]', E'(.*)\\[([0-9]*)\\]');
regexp_matches
----------------
{/a/b,534}
(1 row)
depesz
--
Linkedin: http://www.linkedin.com/in/depesz / blog: http://www.depesz.com/
jid/gtalk: depesz(at)depesz(dot)com / aim:depeszhdl / skype:depesz_hdl / gg:6749007
From | Date | Subject | |
---|---|---|---|
Next Message | austijc | 2008-09-28 18:51:49 | Re: ERROR: unexpected data beyond EOF in block XXXXX of relation "file" |
Previous Message | Anatoli Lau | 2008-09-27 00:46:31 | BUG #4438: regexpression gives the error by working with [ |