
Announcements
hi,
i have a string like: 20201103,20201106,20201120
I need to get it something close to a date format and display below each other, for example:
2020-11-03
2020-11-06
2020-11-20
i tried with split function or some other tricks but wont work... any suggestions?
split(variables('text'),',')
substring(outputs('Compose_3'),0,4)
substring(outputs('Compose_3'), 4, 2)
substring(outputs('Compose_3'), 6, 2)
concat(outputs('Substring_to_find_year'),'-',outputs('Substring_to_find_month'),'-',outputs('substring_to_find_day'))