I am trying to remove huge sequence of time stamp on a text file.
It's formatted like this:
Service Commands(04:59)
Using system-config-services(03:49)
I want it to look like this:
Service Commands
Using system-config-services
I tried with the following wild cards ? and * to replace it by just leaving it empty:
Find attempt1:
(??:??)
Find attempt2:
(\**:**)
Replace:
Nothing happens.
Am I using the correct wildcards for textmate? What am I missing here?