Re: Regexp_replace question / help needed - Mailing list pgsql-general

From Tom Lane
Subject Re: Regexp_replace question / help needed
Date
Msg-id 12631.1449699840@sss.pgh.pa.us
Whole thread Raw
In response to Regexp_replace question / help needed  (Christopher Molnar <cmolnar@ourworldservices.com>)
List pgsql-general
Christopher Molnar <cmolnar@ourworldservices.com> writes:
> I have a string (like 40,000 with different length and number of
> components) of them in a field named "externalurl". I need to replace the
> final "/" of the string with "&file=" while preserving the filename and
> extension following the "/".
> The closest I can get is:
> regexp_replace('http://test.com/test/testfile.php','/[^/]*$','&file=')

There's more than one way to do it.  You could use capturing parens:

regexp_replace('http://test.com/test/testfile.php','/([^/]*)$','&file=\1')

or you could use a lookahead constraint:

regexp_replace('http://test.com/test/testfile.php','/(?=[^/]*$)','&file=')

            regards, tom lane


pgsql-general by date:

Previous
From: Christopher Molnar
Date:
Subject: Regexp_replace question / help needed
Next
From: Nicolas Paris
Date:
Subject: Re: Regexp_replace question / help needed