Last active
May 11, 2020 13:48
-
-
Save kbbgl/1c6ef8ce8471f3804d1a9eb6148164e6 to your computer and use it in GitHub Desktop.
[replace HH-mm-ss to HH:mm:ss] #regex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Find time in format 16-58-56: | |
| (\d{2})-(\d{2})-(\d{2}), | |
| # Replace to 16:58:56: | |
| $1:$2:$3, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment