I am looking to replace both single and double quotes in my MTE file. I have:
m3tArtistName=("$replace($replace(%artist%,'',#39;),",quot;")
It's replacing the single quotes, but not the double.
Ideas?
Thanks,
Drew
I am looking to replace both single and double quotes in my MTE file. I have:
m3tArtistName=("$replace($replace(%artist%,'',#39;),",quot;")
It's replacing the single quotes, but not the double.
Ideas?
Thanks,
Drew
Got it working! 
m3tAlbumName=("$replace($replace(%album%,'"','quot;'),'','#39;')")
You can do it this way ...
$replace(%TEXT%,'&','&','<','<','>','>','',''','"','"')DD.20120622.1048:CEST
Ahh, your way is much easier. Thank you!