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...
392
Murilo Rodrigues
darkp
Apr 10, 2008 7:39 am
Ok, Thank you very much! Only to complete the REPLACE in the modified text you must include the FINAL line to Clip. ^!InsertCode ^%leet% Regards, Murilo Ps:...
393
David Smart
smartware_co...
Apr 10, 2008 9:04 am
Lotta I'm only getting one copy of each e-mail - including yours. You're not subscribed to the list under two different e-mail addresses are you? Regards, Dave...
394
loro
yastupidhoo
Apr 10, 2008 10:36 am
Dave, ... You are right. The duplicates are to another address I didn't even know I had ever used. It started with Murilo's first post. I'll go check the...
395
Murilo Rodrigues
darkp
Apr 10, 2008 12:07 pm
Hi, If you have a lot of lists, please send to my email the most interesting! Regard's, Murilo ... From: loro To: ntb-scripts@yahoogroups.com Sent: Wednesday,...
396
loro
yastupidhoo
Apr 10, 2008 12:23 pm
... If you want to join the clip list, send an empty email to this address. <mailto:ntb-Clips-Subscribe@yahoogroups.com> Jody, the original list owner and...
397
copyacademyperfect
copyacademyp...
Apr 13, 2008 1:01 pm
This is a nOOb warning, going out first. Just so you know; in case the question is really dumb - maybe I should explain... I've been coding for twelve hours,...
398
Don - HtmlFixIt.com
don@...
Apr 13, 2008 5:15 pm
Some padding things in notetab: Choice one (probably not): ^!SetNameFormat Mask (added in v4.6) The name format is used when new documents are created. The...
399
copyacademyperfect
copyacademyp...
Apr 14, 2008 4:42 pm
... Thank You! I'll try your Jedi mind tricks, one by one. I am so very green I hafta read everything four, five or six times while focusing on some manual in...
400
Doug Offen
d_offen
May 2, 2008 12:27 am
Hello N-tabbers I would like to do some article site building with NoteTab. I am not good at making scripts and I was leaning toward using WordPress with all...
401
Doug Offen
d_offen
May 2, 2008 2:55 am
... Sorry tabbers. I think I posted in the wrong group. I intended to post this query in the clips group. Thanks Doug Offen...
402
Art Kocsis
artkns
Jun 1, 2008 7:39 pm
Hello, I am trying to make a small clip efficient by using RegEx but am getting nowhere. What I am trying to do is convert any text file (Unix or Windows) to a...
403
loro
yastupidhoo
Jun 1, 2008 8:36 pm
... I think that Notetab always uses CR/LF when it has a document open. If you instead use the disk search (F3) I think it'll work. I don't know regex, so I...
404
loro
loro@...
Jun 1, 2008 9:05 pm
... But you want to do it with a clip, right? I sort of missed that part. :-) You could use ^$GetFileText()$ to grab the text from the disk file, ...
405
John Shotsky
shotsky1
Jun 1, 2008 9:13 pm
I use Regex expressions quite a bit, and line terminations are an issue I deal with a lot. NoteTab considers \R to be any combination of line terminators. \n...
406
Don - HtmlFixIt.com
don@...
Jun 1, 2008 10:01 pm
Regex in 4.x just isn't up to snuff. Go get 5.x version of notetab....
407
loro
yastupidhoo
Jun 1, 2008 10:47 pm
... Can Notetab really distinguish between different line endings in an open doc, even with regex? If so, what are those mysterious extra bytes in the file...
408
John Shotsky
shotsky1
Jun 1, 2008 11:24 pm
The answer to your first question is yes, definitely. Each line terminator type has its own symbol. \R includes all of them. It's all documented in the help...
409
Art Kocsis
artkns
Jun 3, 2008 1:56 pm
Warning - long post, question at end. Well, Thanks to you guys and the help files some progress has been made. Probably most of this is quite well known to you...
410
John Shotsky
shotsky1
Jun 3, 2008 2:25 pm
Art, Nice essay. Just for clarification, my usage doesn't use those two clips in sequence - one is used at the beginning, the other is used at the end. I do...
411
Art Kocsis
artkns
Jun 4, 2008 3:22 am
Hi John, Thanks for the tip. I wonder how many other settings in the options have I not seen all these years. Actually, setting the "Options | Documents | ...
412
buralex@...
alecb3ca
Jun 4, 2008 4:27 pm
Art Kocsis <artkns@...> said on Jun 03, 2008 23:16 -0400 (in ... Use it enough and you'll start trying to enter Regex in the Google toolbar. <tip> it...
413
John Shotsky
shotsky1
Jun 8, 2008 7:29 pm
I am processing fairly large (~1M) text files, in which certain words need to be capitalized, or upper cased. I would like to use ^!Replace statements to...
414
Sheri
silvermoonwo...
Jun 8, 2008 8:47 pm
... NoteTab uses a 3rd Party Delphi component in its regex processing; the Delphi component provides the replacement tokens. In February this year, I...
415
Don - HtmlFixIt.com
don@...
Jun 8, 2008 10:52 pm
I was thinking if you just use the function that assigns regex to variables, then you could do it that way, but I can never find that function in help. It is...
416
Sheri
silvermoonwo...
Jun 9, 2008 12:30 am
... ^$GetReSubStrings$ ? Its used after a ^!Find command....
417
Don - HtmlFixIt.com
don@...
Jun 9, 2008 2:16 am
... Right that should do it. Regex find, use getresubstring (how will I ever remember this one? -- and why don't I find it if I look for variable and regex in...