... 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. ...
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 .. ...
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...
... 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...
... 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...
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...
... 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....
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...
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"...
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" <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...
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...
... 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...
... 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...
Hi, could it be possible to make an extra replace command, for example : $1 = normal replace $U1 = UPPERCASE replace $l1 = lowercase replace Thanks !...
... 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...
... 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...
... 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...
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...
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...
... 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 "\....
... 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...
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...
... 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...