Hi,
I'm using the "running tool" to for my workflows. User Regex, I'd like to parse each of the lines that start with "Error" from the log but I don't know how to do that dynamically. So, if I use the "Regular Expression":
(Error.*)
...I will return the first line that starts with error but if there are more than 1 errors, my "regular expression" has to match the exact number of errors or it won't parse the information correctly.
So if I have 2 errors and I put my RE as:
(Error.*)(Error.*)(Error.*)
No errors will be found or parsed.
Help,
Mark