Hey I have a list of files
- B123245.xml
- B123245-ext.xml
- 1234W01.xml
- 1234W01-ext.xml
Now I need a regular expression filter only the files without -ext in the name.
I tried already this ^.+(?!-ext)\.xml$
but it is not working.
What am I doing wrong?