... 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. ...
17375
sines_jl
Feb 1, 2008 10:05 pm
How do you have the wizard prompt for the text for an unordered list?...
17376
junja
john_negus
Feb 2, 2008 7:28 am
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 .. ...
17377
B.P. de Vries
bpdevries
Feb 2, 2008 2:11 pm
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...
17378
Don - HtmlFixIt.com
dpasseng
Feb 2, 2008 2:19 pm
... Easy to do. Do you have two or so lines of sample text showing the delimiters, etc....
17379
Axel Berger
absalom_nemini
Feb 2, 2008 2:20 pm
... 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...
17380
James Senick
rosedreamj
Feb 2, 2008 3:38 pm
... 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...
17381
B.P. de Vries
bpdevries
Feb 2, 2008 8:12 pm
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...
17382
Axel Berger
absalom_nemini
Feb 2, 2008 8:18 pm
... 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....
17383
notetab_is_great
notetab_is_g...
Feb 2, 2008 8:19 pm
... Probably (.*?); should actually be ([^;]*); for the first three () groups. The last would be fine with (.*?)...
17384
B.P. de Vries
bpdevries
Feb 2, 2008 9:43 pm
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...
17385
Dave
david_99_au
Feb 3, 2008 11:31 am
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"...
17386
janderri
Feb 3, 2008 8:07 pm
Just one more question, the regular expressions and replace commands are really clumsy laid out in the help file. For example : ^!Replace "\.\Rik" >> "\.\RIk"...
17387
janderri
Feb 3, 2008 8:14 pm
Also does anyone know what the OR operator is in a find/replace function ? so, Find a OR b ?...
17388
buralex@...
alecb3ca
Feb 3, 2008 11:46 pm
"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...
17389
janderri
Feb 4, 2008 12:47 am
... http://www.flash-fun.com/html/thankyou.php...
17390
dracorat
Feb 4, 2008 9:39 am
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...
17391
Sheri
silvermoonwo...
Feb 4, 2008 1:31 pm
... 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...
17392
Sheri
silvermoonwo...
Feb 4, 2008 1:41 pm
... 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...
17393
leroydennis254
Feb 4, 2008 6:30 pm
Hi, could it be possible to make an extra replace command, for example : $1 = normal replace $U1 = UPPERCASE replace $l1 = lowercase replace Thanks !...
17394
Sheri
silvermoonwo...
Feb 4, 2008 7:42 pm
... 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...
17395
ebbtidalflats
Feb 4, 2008 9:19 pm
... 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...
17396
leroydennis254
Feb 5, 2008 5:49 am
... 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...
17397
leroydennis254
Feb 5, 2008 6:11 am
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...
17398
Pat Drummond
pdqweb
Feb 5, 2008 10:11 am
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...
17399
Sheri
silvermoonwo...
Feb 5, 2008 12:23 pm
... 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 "\....
17400
Sheri
silvermoonwo...
Feb 5, 2008 1:24 pm
... 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...
17401
Jeff Scism
scismgenie
Feb 5, 2008 2:50 pm
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...
17402
Sheri
silvermoonwo...
Feb 5, 2008 3:32 pm
... It is given in full in the message that was being answered: http://tech.groups.yahoo.com/group/ntb-clips/message/17398 Regards, Sheri...
17403
ebbtidalflats
Feb 5, 2008 5:02 pm
... 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...