Quick Filter question

I want to hide some files on my ftp server so I'm trying to create a hide filter for the FTP folder format.

I want to hide these files

*.nohtaccess
*.nonsconfig

So I created the following filter *.(nohtaccess|nonsconfig) which is working fine.

Now I want to hide another file in addition to the above, the file is _vti_inf.html. I tried the following filters but the _vti_inf.html file doesn't get hidden.

*.(nohtaccess|nonsconfig)_vti_inf.html
*.(nohtaccess|nonsconfig)|_vti_inf.html
*.(nohtaccess|nonsconfig)(_vti_inf.html)
*.(nohtaccess|nonsconfig)|(_vti_inf.html)

Can someone show me the correct format? I'm sure it's something really simple.

The easiest way is probably this:

(.nohtaccess|.nonsconfig|_vti_inf.html)

You could also do this which is along the lines of what you were trying, but I think harder to read:

(*.(nohtaccess|nonsconfig)|_vti_inf.html)

The important thing is that there are brackets around every set of things separated by pipes.

This works perfectly, just got my brackets mixed up.

Thanks