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...
386
Alan C
acummingsus
Mar 9, 2008 12:22 am
http://www.notetab.com/html.php#Utilities scroll down some, I saw several that begin with "mscleaner" Also you likely may get more help on (a different Yahoo...
387
Murilo Rodrigues
darkp
Apr 9, 2008 3:29 pm
Hi, Anyone can help me to create a clip to convert a block of text with (leet) (l33t) language using notetab? If the job is hard, let me know. I'm a newbee in...
388
loro
yastupidhoo
Apr 9, 2008 9:02 pm
Hi Murilo, ... There probably are more elegant and involved ways to do this, but here's an easy way. Take a look at ^$StrReplace()$ in Clip Help. I only did A...
389
loro
yastupidhoo
Apr 9, 2008 9:45 pm
I believe A is 4, not |4. Got a little pipe happy there. ... ^!Set %leet%=^$StrReplace("A";"4";"^%leet%";false;false)$ Not that it matters, but anyway... Lotta...
390
loro
loro@...
Apr 9, 2008 11:49 pm
OK, this was fun so I couldn't resist to finish it. I don't know what the current status of leet is, so with reservations for that, here goes. ...
391
loro
loro@...
Apr 10, 2008 12:54 am
Actually, you have to place the M line last, or the v in |v| gets translated twice (but |\/| also means M).. I don't know if everyone gets two emails for every...