Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从连接的字符串中删除http://www., http://, https://www., and https://,并且想知道是否有比使用 REPLACE 函数更好的方法。我猜是RegEx,但我无法让它工作。
http://www.
http://
https://www.
https://
`out`= CONCAT(REPLACE( REPLACE( `PROGRAMNAME`, 'http://', '' ),'www.',''),'-', `NAME`
创建了一个 UDF 包,用于使用 MySQL 执行该类型的操作。
https://launchpad.net/mysql-udf-regexp
**当我发布我的答案时没有看到评论,对不起。