1
airfling 2019-09-29 15:29:50 +08:00 1
用正则不如用分割符,先按照 /分割,再按照-分割,然后重新拼接
|
2
NjcyNzMzNDQ3 2019-09-29 16:28:13 +08:00 1
input : SELECT REGEXP_REPLACE('a b c', 'b', 'X');
output: a X c 参考: https://dev.mysql.com/doc/refman/8.0/en/regexp.html#function_regexp-replace |