here is my regex: https://regex101.com/r/g56UzY/1
i have this pattern
pdlvkw6v INFO  18:25:03.994 pdlvkw6v WARN  18:25:03.994 pdlvkw6v INFO  
18:25:03.994 rg9n9bz7 INFO  18:23:52.987 rg9n9bz7 ERROR  19:23:52.987 
rg9n9bz7 INFO  21:23:52.987 5y6n9bz7 WARN  18:23:52.987
and my current regex is: [\w]{8}\s+(INFO|WARN|ERROR)\s+\d\d:\d\d:\d\d\.\d\d\d
I want the regex to only determine the first unique string ie. show pdlvkw6v and after that it should show me rg9n9bz7 and then 5y6n9bz7, it should not match the repititive strings.
What i am trying is to break events from multiline based on this fixed string and since one event can have multiple string and i want to be able to break it by the first matching string and leave the rest into the event.
 
    