Regular expression find and replace in Postgres

前端 未结 2 1608
走了就别回头了
走了就别回头了 2020-12-14 14:58

I have a table that contains a number of rows with columns containing a URL. The URL is of the form:

http://one.example1.com:9999/dotFile.com

I

2条回答
  •  南方客
    南方客 (楼主)
    2020-12-14 15:49

    if you know the url, you don't have to use regex. replace() function should work for you:

    replace(string text, from text, to text)        
    Replace all occurrences in string of substring from with substring to   
    example: replace('abcdefabcdef', 'cd', 'XX')    abXXefabXXef
    

    you could try:

    replace(yourcolumn, 'one.example1.com:9999','example2.com')
    

提交回复
热议问题