I want to replace the extension of all files with a different extension. So file_1.doc and file_2.xls become file_1.pdf and file_2.pdf. It should work with any extension.
I tried using section RegEx (1) with ^(.*)$ in the Match and pdf in the Replace but this replaces the front part not the extension.
What is the correct way to do this?