Thanks for the efforts.
The problem with turning off partial matching is that I also wanted to include as a criteria the "comma space" after the last name, which is the surest indication that I'm looking at a last name and not just any old string beginning with "R"
In that case, use Find's Advanced Mode, with Regular Expressions. Start with something like:
^R\w*,
which is Beginning of Line, R, any number of word characters, followed by comma. Alternatively,
instead of looking for word characters (which are limited), restrict to non-whitespace, non-comma::
Can't you just search for "R*, *" (without the quotes) in the filter bar, with partial matching off?
BTW, the case sensitive option in the Find panel mentioned above only applies to the Containing Text field directly above it, not the Name Matching field higher up.
Is this the right time for a feature suggestion?
I BREATHE through the Filter bar, there's one at the bottom of each of my listers.
How about, to the right of the text field, a check box with a "R" as a label, to turn regex on and off.
That would really rock.
Then, for this question, instead of going into Prefs to switch off partial matching, you could just tick the R box and start with a caret anchor as MrC suggested, e.g. ^R[[:alpha:]]*,
For those who want that, you could also have a "P" and a checkbox for partial matching.
Last, way in the future, if someone complains that the checkboxes clutter the interface, an option in Prefs to show them or not to show them.