Re: Regexp_replace question / help needed

From: Jerry Sievers <gsievers19(at)comcast(dot)net>
To: Christopher Molnar <cmolnar(at)ourworldservices(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Regexp_replace question / help needed
Date: 2015-12-09 22:41:53
Message-ID: 86oadz5jny.fsf@jerry.enova.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Christopher Molnar <cmolnar(at)ourworldservices(dot)com> writes:

> Hello,
>
> I am running into a problem and need some pointers on regexp_replace - I can't seem to find an answer in any of the online resources.
>
> 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=') 
>
> however this looses the file name and returns:
>
> http://test.com/test&file=
>
> What I am looking for is:
>
> http://test.com/test&file=testfile.php
>
> as a result.
>
> Would anyone here point me in the right direction?

> select regexp_replace('http://foo/wow/blah/zzz.php', '/([^/]*)$', '&file=\1');
regexp_replace
----------------------------------
http://foo/wow/blah&file=zzz.php
(1 row)

>
> Thanks!
> -Chris
>

--
Jerry Sievers
Postgres DBA/Development Consulting
e: postgres(dot)consulting(at)comcast(dot)net
p: 312.241.7800

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Christopher Molnar 2015-12-09 23:02:19 Re: Regexp_replace question / help needed
Previous Message Nicolas Paris 2015-12-09 22:25:24 Re: Regexp_replace question / help needed