Everything 1.5a: Create search filter for subtitle files and result in nothing

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
cndhng
Posts: 6
Joined: Thu May 30, 2024 12:37 pm

Everything 1.5a: Create search filter for subtitle files and result in nothing

Post by cndhng »

image.png
image.png (99.38 KiB) Viewed 271 times
After the settings, I put my path in the search index, and nothing showed up.
void
Developer
Posts: 16680
Joined: Fri Oct 16, 2009 11:31 pm

Re: Everything 1.5a: Create search filter for subtitle files and result in nothing

Post by void »

Please change your filter search to:

ext:srt;sub;ssa;ass;vtt


ext:
cndhng
Posts: 6
Joined: Thu May 30, 2024 12:37 pm

Re: Everything 1.5a: Create search filter for subtitle files and result in nothing

Post by cndhng »

Thank you,
one additional question though, how can I search for files that exclude files that do not contain:
anywhere that includes "-en" AND files that have "vi" AND "vnm" AND "vn" at the end of their strings?
void
Developer
Posts: 16680
Joined: Fri Oct 16, 2009 11:31 pm

Re: Everything 1.5a: Create search filter for subtitle files and result in nothing

Post by void »

Could you please provide a few sample filenames.

Please try:

regex:-en regex:"(vi|vnm|vn)\b"


\b = match word boundary (match end of word)

To exclude, please try:

!< regex:-en regex:"(vi|vnm|vn)\b" >
Post Reply