I am a complete greenhorn with reg exp so sorry if this has been answered or its a stupid question. I want to replace all occurences of ...
449
Sheri
silvermoonwo...
Jul 18, 2009 10:25 pm
... Try this, should also work from the replace dialog. ^!Replace "(?-i)[a-z]\K\x20*$\R" >> "\x20" RAWS0 It says: (?-i) not case insensitive [a-z] a character...
450
Don - HtmlFixIt.com
don@...
Jul 18, 2009 10:46 pm
replace this ([a-z])\r\n([a-z]) with this $1 $2 Putting something in () means it is captured as a subpattern that can then be put back in the replace. [a-z] is...
451
Don - HtmlFixIt.com
don@...
Jul 19, 2009 3:06 am
I have the tutorial you sent a while back Sheri, it is a microsoft powerpoint or something, but I made a text copy I use myself :-) \K is my learning for the...
452
Sheri
silvermoonwo...
Jul 19, 2009 3:29 pm
... Found it (newer date, but looks about the same as the older one I had): <http://gravitonic.com/c/dl.php?file=talks/php-quebec-2009/regex-clinic.pdf> ...
453
Steve B
kalukee
Jul 19, 2009 4:23 pm
thanks for the replies, i am still digesting what was given.:)...
454
Alec Burgess
alecb3ca
Jul 19, 2009 5:55 pm
Steve: I'll bet your mind is reeling, especially if you tried to digest everything in Sheri's excellent reference PDF in one pass. Another you might want to...
455
mycroftj
Oct 6, 2009 9:36 pm
I know that ^(.*\R)(\1)+ will find (sorted) duplicate lines but I want to find lines that only match the first 30 characters. I thought ^(.{30})(\1)+ would...
456
Sheri
silvermoonwo...
Oct 7, 2009 1:01 am
... Sounds like you need to match not only the first 30 characters, but also the rest of the line. Then after that line, continue matching subsequent whole...
457
mycroftj
Oct 7, 2009 1:16 am
Sheri Thank you. You are correct and your suggestion works perfectly. I'd never have guessed that one. Joy...
458
Art Kocsis
artkns
Oct 7, 2009 11:58 pm
Hello Steve, A month ago I posted an extensive list and discussion of RegEx resources on the NoteTab Clips group: Date: Fri, 04 Sep 2009 23:57:46 -0700 ...
459
RudiV
ms65
Nov 19, 2009 7:20 am
Hopefully, you folks are less arrogant than Julian, and allow me to have a pro-active exchange¡K As a retired IT guy of 35 years, knowing unix (realtime), I...
460
Eric Fookes
eric_fookes
Nov 19, 2009 8:06 am
Hi Rudi, ... Julian is not arrogant! He is following Fookes Software support policies. Here's a quote from our support page: "Please note that Fookes Software...
461
Al
acummingsus
Nov 19, 2009 8:10 am
Hi, You mentioned Perl? I'm not sure what your question is. 1. Enclosed perl below is close if you not need to go multi or across line(s) with search criteria....
462
Sheri
silvermoonwo...
Nov 19, 2009 4:45 pm
... Hi Rudi, Using regex in NoteTab's Find and Replace dialog or clipcode, you can match CRLF with \R or with \r\n. Another way is to include linebreak...
463
Sheri
silvermoonwo...
Nov 19, 2009 5:05 pm
Hi Eric, ... I don't think it is productive for Julian to say essentially "we don't have time to help you," which regardless of the accuracy sounds arrogant. I...
464
Eric Fookes
eric_fookes
Nov 19, 2009 5:24 pm
Hi Sheri, ... I'm often surprised how we perceive things differently across the Atlantic. I don't see it that way but respect your opinion. ... Thanks for your...
465
Don - HtmlFixIt.com
don@...
Nov 19, 2009 10:39 pm
Hi Eric, Since this is the notetab scripts list I figure it's pretty sturdy and can handle an off topic post. I wrote back too (however your email address...
466
Don - HtmlFixIt.com
don@...
Nov 19, 2009 10:51 pm
Sheri, Now is a good time for us to repeat the helpful links for regex help that you have given before (one is at end of this email). One of them is what...
467
Eric Fookes
eric_fookes
Jan 27, 2010 7:22 am
Hi everyone, We're pleased to announce the release of NoteTab 6.2 (all versions). You'll find the update link in NoteTab's "Check for Updates" feature, which...
468
tallguy354u1
Feb 20, 2010 7:42 pm
Hi, I have been using NoteTabPro for many many years. I use Perl to run scripts over highlighted text. Since the new OS of XP Pro I have noticed that when...
469
Alec Burgess
alecb3ca
Feb 20, 2010 10:34 pm
Robb: This was apparently a known bug up to Notetab 5 (I found discussion of it in the beta group) Sheri said: > Will you be fixing the ^!RunPerl bug. For...
471
tallguy354u1
Mar 20, 2010 3:07 am
I am using NoteTabPro 6.2 and can't get a custom built library to reload itself. In past versions of NTP once the .clb was saved to disk the clipbook would...
472
hsavage
hrs62930
Mar 20, 2010 5:45 am
... Robb, At first thought it sounds as if you have accidentally deleted the first line in said clipbook. The first line, followed by a blank line should read ...
473
Gavin Craig
gavin_craig
Mar 20, 2010 2:20 pm
I only use Notetab liite - sorry ________________________________ From: tallguy354u1 <robb@...> To: ntb-scripts@yahoogroups.com Sent: Fri, 19 March,...
474
Sheri
silvermoonwo...
Mar 20, 2010 3:16 pm
... I'm not having that issue. Can you give more details of exactly what you are doing? Regards, Sheri...
475
Sheri
silvermoonwo...
Mar 20, 2010 7:21 pm
... Usually I edit my clips using clip-edit. But I can instead right click the the library name in the clip panel and Open the clb library as a document. I can...
476
tallguy354u1
Mar 20, 2010 8:25 pm
... The "Restore Default Library" fixed the problem ... You have to right click in the clip-book to see it and it has to be active, meaning that you sorted the...
477
mhcycles
May 5, 2010 9:42 pm
Posting to the notetab list too as this doesn't require a script. Julie I need to create an easy way to process a ntp file and replace every period with a...
478
John Shotsky
shotsky1
May 5, 2010 10:33 pm
It can be done with a clip or not. If you want to do it manually for every document, you can do it with find and replace. Otherwise, you'd want a clip. Using...