I have multiple strings as below in various log files. Intention is to retrieve them in a table and apply group by. Satisfied Conditions: XYZ, ABC, 123, abc Satisfied Conditions: XYZ, bcd, 123, abc Satisfied Conditions: bcd, ABC, 123, abc Satisfied Conditions: XYZ, ABC, 456, abc then output shall be: Condition Count XYZ 3 ABC 3 abc 4 bcd 2 123 3 456 1 I am almost there till retrieving data column wise but not able to get it. Any inputs here would be helpful.
... View more