Hello All,
I am using a RegEX tool to parse times using the following formula: (\d{2}:\d{2}:\d{2}.\d{3}) in this format: 00:00:14.522
The problem I have is when the runtime is under 10 seconds the time appears like this: 00:00:8.304 ith only a single digit for seconds (this doesn't happen for single minute or hour values).
Is there any way to put a range for the number of digits at the highlighted part of the formula?
(\d{2}:\d{2}:\d{2}.\d{3})
Appreciate any help.
Josh