List in dataview that excludes all notes with a date stamp in file name

What I’m trying to do

I write dates notes by giving them a date stamp in the file name: YYYY.MM.DD.
I want to make a list that excludes all notes that are dated in that way.

For example, I could have a diary note called ‘2024.12.07 Diary note’ or minute meeting called ‘2017.04.03 Meeting meetings’. Both of these notes should be excluded.

Things I have tried

Did not know how to search for this command.

To get a list of files not having the date anywhere in the file name you could try something like this:

```dataview
LIST
WHERE !regextest("\d{4}\.\d{2}\.\d{2}", file.name)
```