I think I see my problem. I was using "Process Lines Containing" which appears to extract the entire line, not matter what I search for. I used Search with the Extract function, and it works now!
Thank you!!!! On Friday, May 18, 2018 at 1:47:33 AM UTC-7, Rick Gordon wrote: > > Change the .* in your string to [^.]* > > (And you don't need the square brackets around \. ) > > So: > from [A-Z][a-zA-Z][^.]*\. > > …which really means: > > from followed by a space > > a single capital letter, not including diacriticals/accents > > a single letter of any case, not including diacriticals/accents > > any number (including zero) of non-period characters (which may > include other punctuation, spaces, line breaks, etc.) > > a period > > Does that work, or do you need to be more specific? > -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem, please email "[email protected]" rather than posting to the group. Follow @bbedit on Twitter: <http://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.
