All of your regular expressions are broken because they assume that '.' is treated as a literal character when, in fact, within a regular expression dot is a metacharacter that means "match anything except for newline" (in the default case, as you are using it). Also I'm not sure if your use of "*" in the regexes is intended to be a quantifier, or a wildcard. If the latter, that's another bug.
At the least, you need to escape your '.' characters within the regular expressions using backslash: "\.".
Your problem description is vague. I'd rather know what output you are getting, and what you would like to get.
Dave
In reply to Re: Find files recursively and get their attributes
by davido
in thread Find files recursively and get their attributes
by sriram83.life
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |