I have many lines containing the names of US Presidents Carter, Bush, Clinton, Obama. Some contain 1 of those names, some 2, some 3, some all 4 of them (in any order)
I know how to search for Carter AND Clinton AND Obama -> :g/.*Carter\&.*Clinton\&.*Obama/p ; I know how to search for Carter AND (Clinton OR Bush) -> :g/.*Carter\&(.*Clinton\|.*Bush)/p
(there are most certainly better ways to do that)
But I can't figure how to search (and I looked at the related questions), e.g., for Bush AND Clinton NOT Carter and even less how to search, e.g., for Bush AND Clinton NOT (Carter OR Obama)
Thanks in advance
THG