Hi All,
I am analyzing a log file which has the following form:
"Text text text KEYWORD 123 Text Text Text KEYWORD 345 Text Text Text KEYWORD 678"
I would like to extract KEYWORD 123, KEYWORD 345, KEYWORD 678 and have every match in a separate column. There could be also more occurrences than only 1-3 - I need to output them all. Have tried it with RegEx (KEYWORD) (.*) ) but RegEx is returning only the FIRST match and the remaining keywords in the input string are ignored.
Do you have an idea?
Regards,
BlendingFan