I have a file name from which I'm extracting date: some_file_name_20201103114823.csv using substring
:
substring(input_file_name(),16,8)
I extracted date part, which is now string: 20201103
How can I convert this string to date in format: MM-dd-yyyy
?