Re: Search/Replace with GREP wildcards

2019-12-23 Thread Charles Nichols
Thank you very much. That worked perfectly. Charles Nichols www.charlesnichols.com On Mon, Dec 23, 2019 at 12:58 PM Massimo Rainato wrote: > In a 3 step yes. > 1) change first part fix with > 2) change lastpart with > 3) change (.*) with none > > Il giorno lun 23 dic 2019

Re: Search/Replace with GREP wildcards

2019-12-23 Thread Sam Hathaway
On 23 Dec 2019, at 11:44, Charles Nichols wrote: Is it possible to find and delete every instance of Program (PDF) in a file, using wildcards instead of "20141201-IlPreteDISIS", which is a name of a PDF, that will be different for each instance, but always in the pattern "Date-Name"?

Re: Search/Replace with GREP wildcards

2019-12-23 Thread Massimo Rainato
In a 3 step yes. 1) change first part fix with 2) change lastpart with 3) change (.*) with none Il giorno lun 23 dic 2019 alle 17:45 Charles Nichols ha scritto: > Is it possible to find and delete every instance of > > class="internal">Program (PDF) > > in a file, using

Re: Search/Replace with GREP wildcards

2019-12-23 Thread Charles Nichols
Is it possible to find and delete every instance of Program (PDF) in a file, using wildcards instead of "20141201-IlPreteDISIS", which is a name of a PDF, that will be different for each instance, but always in the pattern "Date-Name"? On Wednesday, May 18, 2016 at 6:20:32 PM UTC-4,

Re: Search/Replace with GREP wildcards

2016-05-18 Thread Christopher Stone
On May 18, 2016, at 15:20, Steve Piercy wrote: > Another option is the BBEdit reference "Searching with Grep", which I > bookmarked and view in a web browser because the Apple Help viewer has a > terrible UI.

Re: Search/Replace with GREP wildcards

2016-05-18 Thread Luis Speciale
Le 18/05/2016 à 22:20, Steve Piercy a écrit : On 5/18/16 at 3:11 PM, listmeis...@suddenlink.net (Christopher Stone) pronounced: On May 18, 2016, at 13:08, 1611mac <1611...@gmail.com> wrote: Awesome! I learned a lot just from that one simple little blurb!

Re: Search/Replace with GREP wildcards

2016-05-18 Thread Steve Piercy
On 5/18/16 at 3:11 PM, listmeis...@suddenlink.net (Christopher Stone) pronounced: On May 18, 2016, at 13:08, 1611mac <1611...@gmail.com> wrote: Awesome! I learned a lot just from that one simple little blurb! __

Re: Search/Replace with GREP wildcards

2016-05-18 Thread 1611mac
Awesome! I learned a lot just from that one simple little blurb! Thank you very much! Perfect! Over 4k lines changed in a couple seconds! On Wednesday, May 18, 2016 at 1:37:54 PM UTC-4, Sam H. wrote: > > Hi, > > Find: ="#(.*)" > Replace: ="#\U\1\E" > > Hope this helps. > -sam > > On 18

Search/Replace with GREP wildcards

2016-05-18 Thread 1611mac
Is it possible to "Replace" wildcard strings? For example, given this "FIND" string entered in Find and Replace: ="#.*" How would I "REPLACE" the wildcard text found with the same text set in all caps? Example: ="#foo" becomes ="#FOO" -- This is the BBEdit Talk public discussion