正则表达式 – 正则表达式在Postgres中查找和替换

前端之家收集整理的这篇文章主要介绍了正则表达式 – 正则表达式在Postgres中查找和替换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个表格,其中包含一列包含URL的行。网址的格式如下:

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

我想用http://example2.com/dotFile.com替换该列中的所有匹配项,同时保留以下所有内容:9999。我已经找到一些关于regexp_matches和regexp_replace的文档,但是我不能很好地围绕它。

如果你知道url,你不必使用正则表达式。 replace()函数应该适用于你:
replace(string text,from text,to text)        
Replace all occurrences in string of substring from with substring to   
example: replace('abcdefabcdef','cd','XX')    abXXefabXXef

你可以试试:

replace(yourcolumn,'one.example1.com:9999','example2.com')
原文链接:https://www.f2er.com/regex/357583.html

猜你在找的正则表达式相关文章