I have the following RegEx pattern, which seems to work properly in matching the words in a string, with words separated by a colon (:):
/"[^"]*"|[^:]+/g
using RegEx101.com
It properly identifies the words. But how do I add capture groups that will work with n words?
For example, search of
10:05:12:00
should return 4 groups of
10
05
12
00
Ultimately this pattern will be used in a Keyboard Maestro Search Using RegEx Action.
TIA.