How to fetch Execution Ended in Time from the log that is automatically generated in output pane?

Hi All,

I am trying to know the total execution time for a sequence. In the output pane there is data available for same ,“Execution Ended In 00:02:01” how can I get that time in the same format?

Thanks in advance.

Read the log file into a string.
And use the IsMatch activity with the below regular expression to get the time.

You can Regex expression for getting the time from the log.

Regex Expression: (?<=Execution Ended In )(\d\d[:]\d\d[:]\d\d)