我有一个表格,其中包含一列包含URL的行。网址的格式如下:
http://one.example1.com:9999/dotFile.com
我想用http://example2.com/dotFile.com替换该列中的所有匹配项,同时保留以下所有内容:9999。我已经找到一些关于regexp_matches和regexp_replace的文档,但是我不能很好地围绕它。
如果你知道url,你不必使用正则表达式。 replace()函数应该适用于你:
原文链接:https://www.f2er.com/regex/357583.htmlreplace(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')