In Azure Data Factory, what can I do to transform "hh:mm:ss" to total seconds.
In "Add dynamic content" part, I want to use "@activity('dataflow').Duration" in Azure Data Factory to get the duration of my current activity. However, I found that "@activity('dataflow').Duration" is in "hh:mm:ss" format, and I want to transform it to the total seconds.
For example, using "@activity('dataflow').Duration", I can get "00:01:02". What can I do to transform it to the total seconds 62?
"00:01:22" -> "82"
"00:00:30" -> "30"
"01:00:00" -> "3600"
Thanks very much!!!!!