Hi Team,
I would like to drop/trim .png and .jpg files in the output result.
will be appreciated if you could help with regex or any other idea and solution.
Add this:
... | where not match(file, "\.(jpg|png)$")
Hi Woodcock,
This is no working , command syntax is not accepted
Works for me:
|makeresults
| eval file="foo.exe"
| where not match(file, "\.(jpg|png)$")