Re: Bringing the "Unix Script Output" log to the front automatically.

2020-11-17 Thread David Wagner
Noticed the same thing. Run a script and the log would come up. Now have to find to bring to the front... Wags ;) WagsWorld World of Perl Hebrews 4:15 Ph D:(408)914-1341 Ph M:(408)761-7391 On Nov 17, 2020, 11:22 -0800, Philip Sharman , wrote: > Is there a way to bring the "Unix Script Output" log

Re: Help with find and replace please

2018-06-05 Thread David Wagner
What was suggested: Find: _[^>]*[^ ]* replace: &>/span> (the _ is a space) Could be change to: Find: (\s+[^>]*[^\s]* replace: \1 If there can be one space, then usually you can have more than one, so using \s+ covers your spaces. So this should function for you... Wags ;) WagsWorld Hebrews

Re: How to remove mails from a list from another

2017-03-13 Thread David Wagner
Well, first how many id's are we talking about in the second file? 10, 50, 500, ??? After that is known, then should be able to assist?.. Wags ;) WagsWorld Hebrews 4:15 Ph(primary) : 408-914-1341 Ph(secondary): 408-761-7391 On Mar 13, 2017, 10:50 -0700, Magick! , wrote: > Hello, > > I have two t

Re: How to Undo Multi-File Find and Replace

2017-02-27 Thread David Wagner
You would need to know the last chapter number of the book you are in Nd the next chapter name. I have a script I use for my daily reading that I do using Perl and it works well. Once you have the naming convention, it should be pretty easy to accomplish... Wags ;) WagsWorld Hebrews 4:15 Ph(pri

Re: Regex to find blank lines and lines with only spaces

2017-01-12 Thread David Wagner
Well, what can I say, but being an old guy who used perl for over 20 years, it worked for me in Perl, but as stated, does not in bbedit. I tried ^\s*\n and ^\s*\r and both replaced all lines. I do apologize for not trying in bbedit, but used extensively in my Perl scripting that i just made the

Re: Regex to find blank lines and lines with only spaces

2017-01-09 Thread David Wagner
Change the plus to * -> ^\s*$ and will pickup just carriage returns or spaces and carriage returns... ;) Wags ;) WagsWorld Hebrews 4:15 Ph(primary) : 408-914-1341 Ph(secondary): 408-761-7391 On Jan 9, 2017, 07:27 -0800, Mike Pullen , wrote: > > 1. This regular expression works in BBEdit to find

Re: how to Find Differences among lines which have a specific phrase

2016-10-04 Thread David Wagner
Could you do the compare making a diskcopy of that search and then search that output with variables you are after to see what is happening. Know it is two steps, but not a whole lot of extra work. Could also write a Perl script to accomplish what you are after... A thought... Wags ;) WagsWorld

Re: How does one preview anything?

2016-04-28 Thread David Wagner
Go to markup and then at bottom of dialog... Wags ;) WagsWorld Hebrews 4:15 Ph: 408-914-1341 On Apr 28, 2016, 17:26 -0700, Steve Piercy, wrote: > Preview in what? BBEdit, text, browser? > > See the PDF manual, which you can open by choosing "User Manual" > in the Help menu. > > You can also dow