There is a clips list that you should write for an answer to this. ntb-clips@yahoogroups.com Keyboard commands should be avoided when possible as they are ...
23438
Ian NTnerd
indiamcq
Nov 21, 2012 3:03 pm
If you want to do this a lot, here is a way to organise and have the clips just a click away. I use a clip that adds items to the ClipHelp.clh. ClipHelp.clh is...
23439
Cliff Otto
ottoc@...
Nov 23, 2012 8:47 pm
Hi, new to group and I haven't written any clips for a while, so I guess I've gotten quite rusty. Anyway, I want to copy the line following the line that ends...
Axel, thank you very much for solving my problem so quickly, although I cannot say that I understand "^!Find "BB SO\R(.+92;R)" RSTI1". But your method did find...
23442
flo.gehrke
Nov 24, 2012 11:16 am
... No "loopings" needed here. Try... ^!SetClipboard ^$GetDocListAll("(?<=BB SO\r\n).+$";$0\r92;n)$ ^!Toolbar Paste New Regards, Flo...
23443
Cliff Otto
ottoc@...
Nov 24, 2012 2:25 pm
No "loopings" needed here. Try... ^!SetClipboard ^$GetDocListAll("(?<=BB SO\r\n).+$";$0\r92;n)$ ^!Toolbar Paste New Thank you, Flo. That is very much faster. My...
23444
Rodney
cook.rodney...
Nov 24, 2012 2:25 pm
I have been using the following clip for the past seven years without any problems. Now I have upgraded to version 7 it does not work. Sometimes it works, but...
23445
Jeffery
scismgenie
Nov 25, 2012 2:46 pm
I am running a Clip which I want to HTMLTIDY all open documents, after running the LAST Clip on each, save then close each one, then process the next...
23446
Axel Berger
absalom_nemini
Nov 25, 2012 2:58 pm
... That's an easy one. Lots of my clips need to run differently depending on whether something is selected or not. Sometimes the ^& does that on its own,...
23447
Rodney
cook.rodney...
Nov 25, 2012 3:46 pm
It is actually version 7.1 that I have and after reading the 'What's new' file, I think it could be changes made after version 7 that are giving me problems....
23448
flo.gehrke
Nov 25, 2012 3:58 pm
... ^!IfFalse ^$GetTextSize$ Exit Regards, Flo...
23449
Jeffery Scism
scismgenie
Nov 25, 2012 5:28 pm
... Thanks I'll run it on the NEXT directory I do. [Non-text portions of this message have been removed]...
23450
Axel Berger
absalom_nemini
Nov 28, 2012 2:09 pm
The half baked charset functions in NTP are really beginning to get to me. I've still not upgraded from version 7.01, so should the following be fixed, please...
23451
Axel Berger
absalom_nemini
Nov 28, 2012 10:26 pm
There used to be the problem that ^!Replace could not use functions and ^$StrReplace()$ could not use Regex. The latter seems to be fixed, except for one...
23452
hsavage
hrs62930
Nov 29, 2012 6:29 am
... Axel, I'm way behind with regex but in your case you may need to try the NoteTab fixed variable ^%Dollar%. ^$CharToDec(^%Dollar%1)$;0)$ -- ...
23453
Axel Berger
absalom_nemini
Nov 29, 2012 8:22 am
... Doesn't help. In my UTF converter, where I expected only few such characters loosely scattered through the text I looped through individual chars. Here,...
23454
Axel Berger
absalom_nemini
Nov 29, 2012 8:32 am
... Addendum: I can't use an inner loop. ^!Find "something" H selects the found item and destroys the outer selection. ^!Replace "old" >> "new" H doesn't allow...
23455
flo.gehrke
Nov 29, 2012 11:41 am
... '^$CharToDec()$ is a conventional string function that can't deal with a RegEx metacharacter. So '$1' isn't interpreted as a back reference here but as a...
23456
flo.gehrke
Nov 29, 2012 12:10 pm
... Or just... ^!Find "[\xC0-\xF0]" R ^!Set %Char%="^$Calc(848+^$CharToDec(^$GetSelection$)$)$;" ^!Replace "^$GetSelection$" >> "^%Char%" ST Regards, Flo...
23457
Axel Berger
absalom_nemini
Nov 29, 2012 4:16 pm
... Yes, but it needs to be a Find H inside a selection and the first hit destroys it. I'll now use a regex ^!Replace to mark the russian letters and a second...
23458
John Shotsky
shotsky1
Nov 29, 2012 4:39 pm
I often do things like this, and find it easiest to do the initial find, then use replaces within that find, then loop back to do another find. You can use...
23459
Axel Berger
absalom_nemini
Nov 29, 2012 5:58 pm
... That If ought to be superfluous - the A already does the same. And yes, thats exactly what I'm going to do, except that with Replace I can only set a...
23460
Axel Berger
absalom_nemini
Nov 30, 2012 3:21 pm
... To finalize the thread, this is what I've come up with and what seems to ... ^!Jump TEXT_START ... ;long line start ^!Find...
23461
joy8388608
Nov 30, 2012 3:34 pm
... How about a set of farclip subroutines that remember the current selection and reselect the remembered selection? That would be a nice enhancement! Joy...
23462
Axel Berger
absalom_nemini
Nov 30, 2012 3:43 pm
In View-->Options-->Files I've set "Match Directories". It seems that when no file is open NoteTab remebers the last "Save As" directory. I would find it much...
23463
flo.gehrke
Dec 1, 2012 4:25 pm
... Interesting solution! Maybe you could even omit marking those characters with 'R'. Search those characters inside the selection, assign them to an array,...
23464
Axel Berger
absalom_nemini
Dec 1, 2012 4:38 pm
... There may be more than one such foreign block and there may be more than one lnguage, Greek and Hebrew are other possibilities. That's why I needed the R...
23465
Axel Berger
absalom_nemini
Dec 1, 2012 4:46 pm
In my documents I have this string: \foreignlanguage{greek}{Qr'onos} To convert that from TeX to HTML I need to find the greek word "Qr'onos" Easy: ^!Find...
23466
Eb
ebbtidalflats
Dec 1, 2012 5:05 pm
When matching tag paris in html, I use a loop and a stack to match up pairs. For nested brackets a simlar technique might work. Except there is no need to use...