Hi everyone,
I have a file with lines which look like this:
2019/9/24, 15:02:08.8
2019/9/24, 15:02:08.9
2019/9/24, 15:02:08.10
2019/9/24, 15:02:08.11
2019/9/24, 15:02:08.111
2019/9/24, 15:02:08.112
I need to add leading zeroes to the last numbers (milliseconds,the ones after the period) where they don’t have three digits, i.e. 08.008, 08.009, 08.010, 08.011 etc.
I imagine this can be done with regex, but I’m simply an amateur when it comes to regex
I’d appreciate any help!