Re: Plpgsql: Assign regular expression match to variable

From: Ian Barwick <barwick(at)gmail(dot)com>
To: "Leif B(dot) Kristensen" <leif(at)solumslekt(dot)org>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Plpgsql: Assign regular expression match to variable
Date: 2009-09-01 12:36:18
Message-ID: 1d581afe0909010536g6fdb57a0u87c8d748fb9067b6@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

2009/9/1, Leif B. Kristensen <leif(at)solumslekt(dot)org>:
> In Plpgsql, I've got this problem of how to assign an integer extracted
> from a regex to a variable. My approach so far feels kludgy:
>
> -- extract ^#(\d+) from txt
> IF txt SIMILAR TO E'#\\d+%' THEN
> my_int := SUBSTR(SUBSTRING(txt, E'#\\d+'), 2,
> LENGTH(SUBSTRING(txt, E'#\\d+')) -1)::INTEGER;
> -- strip ^#\d+ from text
> my_txt := REGEXP_REPLACE(txt, E'^#\\d+ ', '');
> END IF;
>
> What I'd like to do is something like this:
>
> my_int := MATCH(txt, '^#(\d+)')::INTEGER;
>
> which would assign the integer atom (\d+) to my_int.

This seems to do what you want:

my_int := (REGEXP_MATCHES(txt, E'^#(\\d+)'))[1];

Ian Barwick

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Leif B. Kristensen 2009-09-01 12:56:18 Re: Plpgsql: Assign regular expression match to variable
Previous Message Leif B. Kristensen 2009-09-01 12:01:00 Plpgsql: Assign regular expression match to variable