Hi,
I was trying to use RegEx to combine the following lines in Atom
00
00
08
into something like:
00:00:08
I used the following commands:
Find: ([0-9][0-9])\R([0-9][0-9])\R([0-9][0-9])
Replace: $1:$2:$3
However, even though I could successfully identify all those 3-line instances, the replacement doesn’t work…
Is there any suggestion on how to do this with RegEx?
Thank you very much!