I need to remove http://www., http://, https://www.and https://of the concatenated string and would like to know whether there is a better way than to use the REPLACE function. I assume RegEx, but I could not get it to work.
`out`= CONCAT(REPLACE( REPLACE( `PROGRAMNAME`, 'http://', '' ),'www.',''),'-', `NAME`
source
share