I want to extract only the process name value from the logs and store in a table: Input Log: ------------- <30>1 2023-12-13T06:22:20.197Z 10.205.101.94 4 CGA3001I [sev="INFO" msg="Event" event="Data is getting from process name: C:\\ProgramFiles\\notepad.exe. Now we can try to write the logs. Mode: Operational"] Output: ---------- C:\\ProgramFiles\\notepad.exe I have tried with the command :- regex "(?<=Process name:).*?(?=\.\s+)" | table Process But didn't get any data
... View more