Hi everyone, At last, the first NoteTab Light 5 pre-release is available! Here's a chance for you to be the amongst the first to test it. You can download the...
357
Eric Fookes
eric_fookes
Sep 6, 2007 7:24 pm
Hi everyone, We're pleased to announce the release of NoteTab 5.4, which includes NoteTab Light! You will find the upgrade information through NoteTab's "Check...
358
Eric Fookes
eric_fookes
Oct 5, 2007 10:02 am
Hi everyone, We're pleased to announce the release of NoteTab 5.5, including NoteTab Light. You will find the upgrade information through NoteTab's "Check for ...
359
Rob Springer
springro
Oct 31, 2007 6:20 pm
Hi, PCRE lists it has a "dotall" mode that allows for the . character to also match any sort of line feed / CRs also. Is there a way to turn on this option in...
360
Sheri
silvermoonwo...
Oct 31, 2007 6:46 pm
... Sure, by including (?s) at the start of the pattern. See the "Internal Option Setting" part of the regex help file. Regards, Sheri...
361
Sheri
silvermoonwo...
Oct 31, 2007 6:46 pm
... Sure, by including (?s) at the start of the pattern. See the "Internal Option Setting" part of the regex help file. Regards, Sheri...
362
Rob Springer
springro
Nov 1, 2007 4:11 pm
Thanks! I'm used to / commands you add at the end of it....
363
Alan C
acummingsus
Nov 1, 2007 6:21 pm
... Me too. For example, in Perl, to enable matching across multiple lines, an option is used/added at the end of the regex (whether it be a match or a...
364
Sheri
silvermoonwo...
Nov 1, 2007 6:47 pm
... Perl supports internal and external options. PCRE also supports internal and external options, but leaves the interface up to the calling program. PHP,...
365
Alan C
acummingsus
Nov 1, 2007 7:35 pm
... [ very accustomed to options at end of regex ] ... Oh, so Perl can do it either way, either 1. (internal) by including (?s) at the start of the pattern or...
366
Rob Springer
springro
Nov 1, 2007 8:23 pm
I've got a problem where I need to have a number come immediately after a back reference in the replacement section. So the replacement is something like this:...
367
Sheri
silvermoonwo...
Nov 1, 2007 8:54 pm
... Hi again, Yes, it would be $1\0$8 a backslashed digit in the replacement string is a digit, while $10 would be expected to be a backreference. If there is...
368
Sheri
silvermoonwo...
Nov 1, 2007 9:05 pm
... I'm still entrenched in Windows myself, but definitely not attracted to Vista, so you never know. PCRE comes from a Linux environment btw. Also, its my...
369
Alan C
acummingsus
Nov 1, 2007 10:31 pm
... I'm a subscriber at next http://www.theperlreview.com/ At there, can see in Perl 5.9.5 (devel, not stable) has named captures, coming in Perl 5.10 Does...
370
Sheri
silvermoonwo...
Nov 2, 2007 4:00 am
... lol! NoteTab has had named captures since NoteTab version 5.0. PCRE has had them since PCRE version 6.7 (current version is 7.4) At first the PCRE...
371
Rob Springer
springro
Nov 5, 2007 1:01 pm
Thanks again! I guess I should have kept reading after, "replacement processing is not part of PCRE" statement that got me thinking the rest of the help file...
372
Rob Springer
springro
Nov 9, 2007 4:31 pm
Maybe I'm going crazy... Is there some sort of persistence to the setting of these modes? Specifically with using the std search/replace box. I'm occasionaly...
373
Sheri
silvermoonwo...
Nov 9, 2007 4:44 pm
... No. However I do think that NoteTab defaults to multiline and (at least for ^$GetDocMatchAll$) to case insensitive. ...
374
Alan C
acummingsus
Nov 9, 2007 8:24 pm
... Does it matter whether or not the word wrap is turned or switched off when using a regex in the search dialog (obviously on the current document(s) ). -- ...
375
Sheri
silvermoonwo...
Nov 10, 2007 4:47 am
... Hi Alan, I don't think word wrap mode has any effect on search results via the dialogs or clip commands (regex or not regex). However, it does matter for...
376
Rob Springer
springro
Jan 5, 2008 2:49 pm
Hi, I seem to be having some issues with scripts that ran fine under 4.95, but the timing of the script commands is having problems on 5.5. The scripts tend to...
377
Sheri
silvermoonwo...
Jan 5, 2008 3:15 pm
... There are better commands for navigating the document, e.g., ^!SetCursor, ^!MoveCursor, ^!Jump, etc. Using these avoids timing issues that are inherent...
378
hsavage
hrs62930
Jan 5, 2008 4:21 pm
... Rob, Many users experienced this problem. There were many emails pertaining to it. I assumed the newer input control was more efficient, thus faster, than...
379
Sheri
silvermoonwo...
Jan 5, 2008 7:28 pm
Hi Harvey, Eric declined to change input controls. The program code was updated. The input control for Light and Standard is different than the one for Pro...
380
Rob Springer
springro
Jan 15, 2008 12:32 pm
Thanks Sheri, I had been moving to these other commands you reference for any new scripts, it's just reworking the old ones I was working to avoid. How does...
381
Sheri
silvermoonwo...
Jan 15, 2008 1:18 pm
... Hi Rob, I generally use ^!InsertText and ^!InsertHTML, but as long as its plain text entering it without a command works fine too. Any of the above should...
382
Don - HtmlFixIt.com
don@...
Jan 15, 2008 8:55 pm
Amen to this! This is the second best thing that happened to me on a computer with the first being the discovery of notetab....
383
janderri
Feb 4, 2008 3:48 pm
Hi, I've owned NoteTab Pro for a few years now, but it is only of recently that I've been digging most of the helpfiles, and need it some special things to do....
384
Don - HtmlFixIt.com
don@...
Feb 4, 2008 8:14 pm
... First, you aren't bothering anybody. This usergroup is for people who are interested in this stuff. Second, you wrote the scripts list and that is the...
385
Peter Hulm
peterhulm
Mar 7, 2008 11:29 pm
I am working on a series of scripts now to clean up Word HTML, and soon I expect I shall have to get into regular expressions to do what I want. Does anyone...