A way to sort out Performers with a single name?

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?

  1. open the filters dialog
  2. expand the “Name“ section
  3. select “excludes“
  4. 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.