REPLACE Space from Date

same =>n,Set(cdrstarttime=2020-04-15 00:20:43
I need to replace the white space between YYYY-MM-DD & HH:MM:SS which is actually space after 15 & before 00 and tried below syntax but its not working
${REPLACE(cdrstarttime,T)}

can anyone please help me

Try:

        same = n,set(cdrstarttime=2020-04-15 00:20:43)
        same = n,verbose(${REPLACE(cdrstarttime, ,T)})

Note the added ',<space>'

thanks a lot it worked

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.