Search the web
Sign In
New User? Sign Up
ntb-clips · The NoteTab Clips List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 17374 - 17403 of 19902   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
17374
... Look under view > options > html files tab You just don't have the right options selected Bob. xhtml and lower case will make it what you want it to be. ...
Don - HtmlFixIt.com
dpasseng
Offline Send Email
Feb 1, 2008
3:40 pm
17375
How do you have the wizard prompt for the text for an unordered list?...
sines_jl
Offline Send Email
Feb 1, 2008
10:05 pm
17376
One thing I note from the sample below is that the line following the ! starts with a space. That's no help with the broken words, but it might help a bit .. ...
junja
john_negus
Offline Send Email
Feb 2, 2008
7:28 am
17377
Hello, I have a ;-delimited file in which field 3 and 4 should be 4 and 3. So I have to have the contents of field 4 in field 3 and the contents of field 3 in...
B.P. de Vries
bpdevries
Offline Send Email
Feb 2, 2008
2:11 pm
17378
... Easy to do. Do you have two or so lines of sample text showing the delimiters, etc....
Don - HtmlFixIt.com
dpasseng
Offline Send Email
Feb 2, 2008
2:19 pm
17379
... Do you need a generic way to this often or do you only want it done once? If the latter the easiest way is use any program that can read and write .CSV and...
Axel Berger
absalom_nemini
Offline Send Email
Feb 2, 2008
2:20 pm
17380
... I use Jody's ReOrder Fields clip from the NoteBlock collection: <http://www.notetab.net/html/library.htm> ... The GetField is part of it, you're just...
James Senick
rosedreamj
Offline Send Email
Feb 2, 2008
3:38 pm
17381
Axel (and the others), thanks But when I use this : ^!Replace "^(.*?);(.*?);(.*?);(.*?)$" >> "$1;$2;$4;$3" ATIWRS in a clip I get the fourth field as the...
B.P. de Vries
bpdevries
Offline Send Email
Feb 2, 2008
8:12 pm
17382
... Is the old fourth the last field in the line? If not the last brackets, i.e. $4 will catch all the rest of the line with the old $3 placed after all that....
Axel Berger
absalom_nemini
Offline Send Email
Feb 2, 2008
8:18 pm
17383
... Probably (.*?); should actually be ([^;]*); for the first three () groups. The last would be fine with (.*?)...
notetab_is_great
notetab_is_g...
Offline Send Email
Feb 2, 2008
8:19 pm
17384
Hello, I tried the brackets and did something wrong. Have to read more about Regex. For the moment I put in an extra (.*?) and of course an extra $5 and this...
B.P. de Vries
bpdevries
Offline Send Email
Feb 2, 2008
9:43 pm
17385
Hi Have a look at the "html.clb" under list elements ordered and unordered. I think it comes with notetab install. THANKYOU DAVE M ... From: "sines_jl"...
Dave
david_99_au
Offline Send Email
Feb 3, 2008
11:31 am
17386
Just one more question, the regular expressions and replace commands are really clumsy laid out in the help file. For example : ^!Replace "\.\Rik" >> "\.\RIk"...
janderri
Offline Send Email
Feb 3, 2008
8:07 pm
17387
Also does anyone know what the OR operator is in a find/replace function ? so, Find a OR b ?...
janderri
Offline Send Email
Feb 3, 2008
8:14 pm
17388
"janderri" <jan_derrick@...> said on Feb 03, 2008 15:06 -0500 ... \R (meaning any linefeed matching either \r\n or just \n depending on file format) is...
buralex@...
alecb3ca
Offline Send Email
Feb 3, 2008
11:46 pm
17389
... http://www.flash-fun.com/html/thankyou.php...
janderri
Offline Send Email
Feb 4, 2008
12:47 am
17390
Actually I think the capitalization may be the issue. Even with "ignore case" - the case of the slash command matters. \r matches ends of lines \R matches...
dracorat
Offline Send Email
Feb 4, 2008
9:39 am
17391
... Hi Keith, There are a few metacharacters that are like that (where the capital version is opposite the lowercase version), but not true of "r". Backslash-R...
Sheri
silvermoonwo...
Offline Send Email
Feb 4, 2008
1:31 pm
17392
... Strange, I'm seeing irrelevant vertical bars in quoted text above, somehow inserted from my email app (thunderbird). Above should say: Backslash-R is a...
Sheri
silvermoonwo...
Offline Send Email
Feb 4, 2008
1:41 pm
17393
Hi, could it be possible to make an extra replace command, for example : $1 = normal replace $U1 = UPPERCASE replace $l1 = lowercase replace Thanks !...
leroydennis254
Offline Send Email
Feb 4, 2008
6:30 pm
17394
... Those are nice and are implemented in both AutoHotkey and PowerPro. NoteTab is dependent on a 3rd party Delphi api for its regular expression processing...
Sheri
silvermoonwo...
Offline Send Email
Feb 4, 2008
7:42 pm
17395
... Another way to do this, if the target is known and constant, is to use a NON-reg-exp in the following way: ^!Set %variable%=target string ^!Replace...
ebbtidalflats
Offline Send Email
Feb 4, 2008
9:19 pm
17396
... Thanks, the problem is, I need to do this in a ^!Replace function. (line by line) I found this in the regexp helpfile, but God only knows how to use these...
leroydennis254
Offline Send Email
Feb 5, 2008
5:49 am
17397
Sorry, I can't get into the regular expression to make it work, so therefore this simple question: Is it possible using a ^!Replace function to make the first...
leroydennis254
Offline Send Email
Feb 5, 2008
6:11 am
17398
I've had to convert a long list of files into links several times, line by line (using clip: <a href="^?[URL=^&]">^?[URL]</a>) and was hoping someone else had...
Pat Drummond
pdqweb
Offline Send Email
Feb 5, 2008
10:11 am
17399
... Those are posix character classes, they work on the search side only. ^!Find "\. +[[:lower:]]" RS You can do the same thing with a range: ^!Find "\....
Sheri
silvermoonwo...
Offline Send Email
Feb 5, 2008
12:23 pm
17400
... Is it that you wanted this? <a href="xxx.html">xxx.html</a> If so you could add these lines to Jody's clip just after the line containing: ^?{Enter link...
Sheri
silvermoonwo...
Offline Send Email
Feb 5, 2008
1:24 pm
17401
Which of Jody's clips does this apply to? Sounds useful. ... -- Jeffery G. Scism, IBSSG ~~ "Proponents of each side are vying with determination to prove their...
Jeff Scism
scismgenie
Offline Send Email
Feb 5, 2008
2:50 pm
17402
... It is given in full in the message that was being answered: http://tech.groups.yahoo.com/group/ntb-clips/message/17398 Regards, Sheri...
Sheri
silvermoonwo...
Offline Send Email
Feb 5, 2008
3:32 pm
17403
... In the above code you need to make BOTH wizards IDENTICAL, (add the omitted "^=^&" in the second wizard): <a href="^?[URL=^&]">^?[URL=^&]</a> A single...
ebbtidalflats
Offline Send Email
Feb 5, 2008
5:02 pm
Messages 17374 - 17403 of 19902   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help