I want to get the File Name and Extension without (.) dot.
I have File Name
My_File_Name.txt
File Version : 10
I want to get it as
My_File_Name_txt_10.O
I was able to get the File Name & Version in required format using
Code: Select all
"%%~na_%%b.o"
&
I have tried to get extension through
Code: Select all
"%%~nx1_%%b.o"
"%%~nx2_%%b.o"
"%%~na_%%~xa_%%b.o"
But no luck.
I'm wondering is it possible to get the File Name & Extension without (.) dot?
Thanks in advance