As stated. I would like to find all performers in my database that has a single name only. This is to mark them for exclusion from the Auto-tagger. I can’t seem to find a way to do this with a combination of filters. Does anyone have any tips or experience with this?
- open the filters dialog
- expand the “Name“ section
- select “excludes“
- in the input field, enter “ “ (including the quotes, all 3 characters, quote + space + quote)
Alternatively, you could select “matches regexp“ and use the string “[^ ]+[ ]$“ - this should match all names with no spaces in the middle, but allows for accidental trailing or leading spaces, which easily happen with copy and paste.
How on earth did I not think of that? Thank you so much Spaceyuck! Worked like a charm.