and I would like to get output in minutes or seconds.
Let’s take the first row as an example:
1min 4s 193 ms = 64,193 seconds
or something similar.
can you give me some hints how to do that? Normally it would be very easy, but in my case it is dynamically changed. Sometimes I receive only seconds and ms and sometimes hours, minutes, seconds and ms.
This isn’t the most elegant solution but it should work as you need it too. Because it’s a consistent pattern (from what I can see) I used REGEX to filter and replace, convert to INT then some maths at the end to calculate the seconds total.