Counting

2019-04-22 Thread Francisco Hirsch
I have this type of list (tab separated) (I show only two columns) . Municipio: 25 de Mayo LemaSublema Letra Frente Popular Agrario y Social Conviccion y Lucha Letra E Frente Popular Agrario y Social Unión y Compromiso Letra G Frente Renovador de la Concordia

Re: How to get truncated output from RegEx search

2019-04-22 Thread ThePorgie
If I'm understanding try Find: ((?s).+?) Replace: \1 On Monday, April 22, 2019 at 4:10:31 AM UTC-4, Gustave Stresen-Reuter wrote: > > Thanks to everyone. > > I had forgotten about bbfind but the solution I ended up using was what > Rich had suggested: Extract (and then a bit more processing

Re: Any way to DESELECT/UNSELECT selected text ?

2019-04-22 Thread F. Alfredo Rego
Thanks Rich. I’ll immediately correct/improve my first (second?) AppleScript ever ;-) As a favorite professor used to say: You have to know everything before you can do anything. I appreciate the guidance. Alfredo > On Apr 22, 2019, at 7:23 AM, Rich Siegel wrote: > > On 4/21/19 at 11:11

Re: Any way to DESELECT/UNSELECT selected text ?

2019-04-22 Thread Rich Siegel
On 4/21/19 at 11:11 AM, f.alfredor...@gmail.com (F. Alfredo Rego) wrote: I have explored everywhere I can, but I can’t find any way to DESELECT/UNSELECT selected text. There is no concept of "unselecting", because there is always a selection, even if it's empty (an insertion point). I’m

Any way to DESELECT/UNSELECT selected text ?

2019-04-22 Thread F. Alfredo Rego
Hello everyone, I’m using AppleScript + BBEdit to “refresh” all the files in the “Release” directory with the contents of all the files in the “Prototype” directory. I do this “transfer of the file contents” (instead of simply copying and over-writing the files), to preserve the entire git

Re: How to get truncated output from RegEx search

2019-04-22 Thread Gustave Stresen-Reuter
Thanks to everyone. I had forgotten about bbfind but the solution I ended up using was what Rich had suggested: Extract (and then a bit more processing on the net result). Also, I had to fiddle a bit with the RegEx as it was being too greedy. I'm still struggling to attain expertise with