That might be confusing.  What I have is a list of words (a conlang file) 
and I want to select all words that have at least one upper-case letter. 
 Specifically, I want a pattern that will match:

N\. \\'93[A-Za-z, ]*\\'94

(words enclosed in RTF-style quotes that contain both upper and lower-case, 
this returns 397 matches)

Then I want to exclude those that match:

N\. \\'93[a-z, ]*\\'94

(words that are only lower-case letters)

I could search for the more inclusive pattern (1) to get set A, and then 
search the results browser A to extract the ones that also meet the less 
inclusive pattern (2).  But how do I do the reverse and return only those 
elements of A that do NOT match pattern 2?

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or need technical support, please email
"[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <https://www.twitter.com/bbedit>
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/bbedit.

Reply via email to