To replace a fixed string, use the simple replace()
function.
To replace a dynamic string, you can use regexp_replace()
like this:
UPDATE
YourTable
SET
TheColumn = regexp_replace(
TheColumn, 'http://[^:s]+:9999(S+)', 'http://example2.com1', 'g'
)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…