0 votes

Could you help me for a regex that would select ".xls", ".xlsx", ".csv" files but ignore files with "planning" or "CRM" in the file name.

by (20 points)

1 Answer

0 votes

Instead of using a regular expression I would recommend using the 'DOS Expression':

File Name: *.xls;*.xlsx;*.csv;NOT:planning;CRM
by (29.5k points)
...