Append regular expression in SublimeText

Viewed 1920

I'm very new to regular expressions. I'm working on sublime text and I'm trying to replace all instances of some numbers formatted like this:

00:00:59
00:01:00
00:01:22

and so on.

Appending :00 at the end si it will become 00:00:59:00

I used [0-9]{2}:[0-9]{2}:[0-9]{2} and it finds all instances but I don't know how to append :00 and replace all instances.

3 Answers
Related