I would like to avoid extracting certain types of files from my report that end in .cab, .dll, .pl, and so on. I have the following:
REGEX[*\.(cab|bin|pl|dll)$]
[/red]
Will this do the job or am I missing something.
Also, you need ".*", not just "*". The asterisk is a quantifier meaning "zero or more" of the preceding
character or expression. It doesn't mean "any string of characters" as it does in shell or DOS.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.