I have been trying to remove .dat from ${originalFilename} in destination when i tried to do this ${originalFilename}.txt it gave me like 1652807798759.dat.txt how can i get 1652807798759.txt only without .dat in it I have tried to do this in Destination’s Transformer but no luck Answer A simple replace should work:
Tag: mirth
How to split a comma separated list in javascript, but do not split anything inside quotes with null values
I have a comma separated list that could contain blank values, and could contain values wrapped in double-quotes that I do not want to split. I need to create an array using this split so that I can later loop through it. I’ve tried using some match regex which works, except it overlooks any null values that I have. I’ve