Each line looks like this (with the "x"s being any number or letter):
[xx] xx.xxxxx [xx]: part I want to keep is here
I want to keep everything after the second colon. Is there any easy way to do this?
Here's what I have so far, for removing duplicate lines:
#MaxMem 256 SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. FileSelectFile, file_name, 3, , File to remove duplicates from FileSelectFile, save_name, S3, Save.txt, File to save to FileRead, Text, %file_name% Sort, Text, U FileAppend, %Text%`n, %save_name% FileDelete, %file_name%




