1

I'm converting a timecode and need to replace a colon with a full stop - 00:00:00:000 needs to become 00:00:00.000

I've not used Wildcards before, but gave it ago with no success. What would I have to enter to just replace the last colon, as above?

Thank you!

4

1 Answer 1

0

00:00:00:000 needs to become 00:00:00.000

Use the following:

  • Find :([0-9]{3})

  • Replace .\1

Source: Finding and replacing characters using wildcards

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .