I am trying to clean log files to categorize them in Splunk, so my question is:
(?i)^(?:[^ ]* ){8}(?P.+)((?=\d{8}\d{8}\d{10}.)|(?=\d{8}.?))
bold area needs to be combined like if/else,[it selects good before bold lines]
I want it to STOP just before just-8 digits and dot (ddddddd.) OR 8digit_8digit_10digits (8xd_8xd_10xd.)
my task is to get rid of all unique numbers on log file that i can categorize it better.
please help