Hi, When typing certain characters, like double quotes, brackets, etc., some editors have the ability to insert the matching character and place the cursor...
22308
Sheri
silvermoonwo...
Dec 11, 2011 3:31 pm
Caret-ampersand is a special notation which you don't want NoteTab to evaluate inside the clip wizard. If you substitute the special variable ^%Caret% for each...
22309
layman999
layman_nine
Dec 12, 2011 12:30 pm
Thanks Sheri, Another thing I noticed is that if I use ^!InsertText with the Wizard, I have to place double quotes around the double quotes, like this: ...
22310
ebbtidalflats
Dec 13, 2011 3:02 am
Layman999 has pointed to one of the sharpest curves in learning NoteTab's clip code, the variable syntax. Back when I first tried to code in clip code, I wish...
22311
Alec Burgess
alecb3ca
Dec 13, 2011 3:29 am
Eb: very nice summary! Your comment: "Without the caret, you ASSIGN to the variable." is one I hadn't appreciated. I remember in early days struggling with how...
22312
Don
dpasseng
Dec 13, 2011 3:42 am
I just use Sheri's wonderful clip code syntax ... it syntaxes for me :-)...
22313
Mike Breiding - Morga...
wv.mike
Dec 13, 2011 8:50 pm
Anyone have any clip ideas for changing double quotes to single quotes in hyperlinks. I do not want to change the quotes in images. Thanks, -Mike...
22314
Axel Berger
absalom_nemini
Dec 13, 2011 9:04 pm
... Being lazy I just post something that's part of one of my clips. You'll have to make it fit your requirements: ^!Jump TEXT_START ... ^!Find...
22315
Mike Breiding - Morga...
wv.mike
Dec 13, 2011 9:33 pm
Thanks, Axel. But, I would not no where to start... -Mike ======================...
22316
mblattyh
Dec 13, 2011 10:39 pm
I recently upgraded to NoteTab Pro v6.2 running on a new Windows 7 system (from NTP6.1 on XP). I noticed this problem almost immediately with a clip I use...
22317
bozlawless
Dec 14, 2011 11:00 am
Can anyone help me with pulling the Name and address from html? it would be great to out put them in csv if that possible CSV OUTPUT EXAMPLE "Texas Trading...
22318
Don
dpasseng
Dec 14, 2011 1:26 pm
There are better ways including just a regex if you want ... I'd do more with this. ^!Select All ^!Menu Modify/Strip HTML Tags/Remove All Tags ^!Replace...
22319
Jean-François Colas
jf_colas
Dec 14, 2011 3:50 pm
Hello list, Searching for a method of determining if I have text selected or not when launching a script, I wrote the piece of code below. I found out that,...
22320
Sheri
silvermoonwo...
Dec 14, 2011 4:37 pm
The current selection should be retrieved with ^$GetSelection$ and the selection size should be tested with ^$GetSelSize$ Caret-ampersand is the text that was...
22321
flo.gehrke
Dec 14, 2011 5:24 pm
... ^!IfFalse ^$GetSelSize$ Next Else Skip_2 ^!Prompt This clip requires a selection. ^!Goto End ^!Info The size of the selection is: ^$GetSelSize$ characters ...
22322
Axel Berger
absalom_nemini
Dec 14, 2011 5:43 pm
... I disagree, this loses you a lot of helpful information. As far as I see there is a distinct and unique pattern here: <td> Six Flags Over Texas <br /><span...
22323
Jean-François Colas
jf_colas
Dec 14, 2011 6:37 pm
Hi again, ... Sorry, for that part, I simply forgot ^$GetSelection$...
22324
Don
dpasseng
Dec 14, 2011 8:45 pm
Like what helpful info Axel? What was on his proposed output file that has disappeared? I do agree that you could probably do it entirely with regular ...
22325
Axel Berger
absalom_nemini
Dec 14, 2011 9:39 pm
... There are two, or in my interpretation, which may be wrong, three distinct fields for the CSV. They are delinited by rather unique and unabiguous tag...
22326
bozlawless
Dec 15, 2011 12:23 am
I am confused do i need to create a clip with stuff below ? ... ; begin long line ^!Find "<td>(.*?)<br /><span ...
22327
bozlawless
Dec 15, 2011 3:04 am
forget the csv file can it output just like i have it below? one line with no date or another info OUTPUT EXAMPLE Texas Trading Company 2500 Arnot Rd (I-40...
22328
Axel Berger
absalom_nemini
Dec 15, 2011 6:51 am
... Yes. Create a new empty clip and copy those line into it. DO NOT forget to replace my "E:\temp\" with an appropriate path for your system and make those...
22329
Eb
ebbtidalflats
Dec 15, 2011 3:10 pm
Lawless, If you want to use a clip, create a new clip with the following ONE-LINE command, and run it against a COPY of your source file: ^!Replace...
22330
John Shotsky
shotsky1
Dec 15, 2011 3:20 pm
You don't need to escape the [<>=], but you DO need to escape the [/] if you use the R option. You don't need to escape the '/' in classes, but it doesn't...
22331
Eb
ebbtidalflats
Dec 15, 2011 5:36 pm
John, Good point about using \R, rather than \r\n. As to which characters to escape, I let NoteTab tell me. NT doesn't alwasy agree with conventional patterns....
22332
bozlawless
Dec 18, 2011 8:20 pm
I have a document that i would like to make a clip to DELETE all the dates can someone show me how to make a clip to do that? Also is there a good book or site...
22333
Don
dpasseng
Dec 18, 2011 9:16 pm
Not really somewhere out there Jody has a clip tutorial that was good. use REGular EXpresssions (Regex) to do it. If they are all that format and presumably...
22334
bozlawless
Dec 19, 2011 12:42 am
Thanks Don for the help....But I don't have a clue what you are talking about....
22335
Eb
ebbtidalflats
Dec 19, 2011 1:28 am
You may get a ton of replies, or not. Most people will be too polite to tell you this, but if you do not understand the following tips, you need to start with...
22336
Don
dpasseng
Dec 19, 2011 2:52 am
Click replace and use what I gave you. There is a little box called regex, click/tick it and search and replace....