On Monday, February 4, 2019 at 11:22:37 AM UTC-8, Jim Witte wrote: > > 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 > > If you want at least 1 uc char, why are you searching for 0 or more of uc or lc chars? Why isn't it just
N\. \\'93[A-Z ]+\\'94 -- 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.
