I have slightly edited the datetime clip I posted earlier so that it fits HTML5 better by insert a <time> tag into the coding. ^!Clip CheckLogical ... ^!Set...
23582
Art Kocsis
artkns
Jan 2, 2013 3:15 pm
I don't have much hair left to pull so maybe you guys can save my scalp and suggest a way to make this search pattern work in a clip. I am trying to verify a...
23583
joy8388608
Jan 3, 2013 11:03 pm
... Hi Art. I'm not nearly as good at RegExp at others but I'll give you what I have so far. I'm unclear about your data and what you mean by "the selection...
23584
Art Kocsis
artkns
Jan 4, 2013 2:27 am
... Actually, the "^" means start of selection, if any, start of line if not. What I was trying to convey was that at this point in my clip a selection exists,...
23585
Don
dpasseng
Jan 4, 2013 3:56 pm
Seems to work I think ... ^ *(\+|-)? *?([\d92;.]+)(?! )[^\d\r\n]*$...
23586
Axel Berger
absalom_nemini
Jan 4, 2013 5:19 pm
I don't know if this is new or I just didn't notice before: After Search Disk the options are now transferred to the Find box, so one can jump to the...
23587
joy8388608
Jan 7, 2013 6:30 pm
I looked and looked but cannot find any functions to tell how many columns and rows are visible on the main NT text screen. These values change as the window...
23588
Axel Berger
absalom_nemini
Jan 11, 2013 12:43 pm
LaTeX has many expressions beginning with a backslash, for example \par. The follwoing example misinterprets this somehow in a Replace expression: ...
23589
John Shotsky
shotsky1
Jan 11, 2013 1:18 pm
An example line of actual data before and after would be useful. I think the backslash before the closing bracket is interpreted as a closing bracket instead...
23590
Axel Berger
absalom_nemini
Jan 11, 2013 2:04 pm
... My trimmed down clip is meant to be run on an empty document. Rethinking, it is probably not the \p that's the trouble here. It rather seems that actual...
23591
John Shotsky
shotsky1
Jan 11, 2013 5:06 pm
I have been having ongoing problems with characters displaying correctly in NoteTab. I often get text files as an export from an addon in FireFox, called...
23592
Axel Berger
absalom_nemini
Jan 11, 2013 6:00 pm
... NoteTab can only work with one 8-bit character set at a time. It can read and use UTF-8 notation if all characters used can be mapped to one character...
23593
Axel Berger
absalom_nemini
Jan 11, 2013 6:12 pm
... I just noticed that in this case the Replace need not be Regex, so there is a simple solution. Still it seems there is a bug here. My guess is, that in...
23594
John Shotsky
shotsky1
Jan 11, 2013 6:16 pm
As I stated, I can't ask my users to know how to do that. They want to open a file, edit it a little, save and run my clips on it. Once they open, edit and...
23595
Axel Berger
absalom_nemini
Jan 11, 2013 6:29 pm
... I second that. A general setting turning off all UTF capabilities and detection would be extremely nice to have. It will then be up to you to detect and...
23596
John Shotsky
shotsky1
Jan 11, 2013 6:32 pm
Here is another interesting thing about this problem. If I export the file which creates the condition I'm discussing, and do not even open the file in...
23597
Axel Berger
absalom_nemini
Jan 11, 2013 9:47 pm
... Almost certainly not. Your "original" has already been opened and probably saved by NT at least once before. NT saves info about recent files in Note*.fpr....
23598
John Shotsky
shotsky1
Jan 11, 2013 10:26 pm
When the text file is exported from Firefox, then opened in NoteTab, it has the problem I am discussing. Every time, for the same export. If I export from...
23599
Axel Berger
absalom_nemini
Jan 12, 2013 8:38 am
... This is really, really weird. There is no explanation I can think of except that Windows itself is saving extra meta-information about files and NT can...
23600
John Shotsky
shotsky1
Jan 12, 2013 1:06 pm
Well, if it was mainstream, I wouldn't have brought it up here. At first, I thought maybe FireFox wasn't properly closing the file, which is why I rebooted...
23601
John Shotsky
shotsky1
Jan 12, 2013 2:44 pm
One last bit of information about this problem: When the file has been moved or renamed, it displays correctly in NoteTab, although it doesn't display the...
23602
John Wallace
johnta1
Jan 12, 2013 2:51 pm
What would happen if you saved it as a .html file instead of .txt file? ... From: ntb-clips@yahoogroups.com [mailto:ntb-clips@yahoogroups.com] On Behalf Of...
23603
Axel Berger
absalom_nemini
Jan 12, 2013 3:23 pm
... It has to, those characters are not in CP1252. Converting your sample and assuming mail transfer has not broken anything I get: Speka Piragi These are...
23604
John Shotsky
shotsky1
Jan 12, 2013 4:09 pm
EditPad Pro is a Unicode editor, so yes, it displays Unicode and utf-8 and many other code pages correctly. But that file is not Unicode, it is 8-bit UTF. When...
23605
Axel Berger
absalom_nemini
Jan 12, 2013 4:55 pm
... To my understanding UTF-8 as a specific encoding is a subset, or rather one of several possible versions, of Unicode. ... Sorry, but if those letters do...
23606
Mike Breiding - Morga...
wv.mike
Jan 14, 2013 11:33 pm
Greetings, With some email when I reply to, or forward, the text with line breaks has the breaks stripped out. This means one must scrollllllll across the...
23607
Alec Burgess
alecb3ca
Jan 15, 2013 3:23 am
Menu/Modify/Lines/"Split Lines" (shift + Ctrl + J) This and the inverse "Join Lines" can be put on you toolbar as well. ... -- Regards ... Alec (buralex@gmail...
23608
Eb
ebbtidalflats
Jan 15, 2013 9:26 pm
Here's a tip to get rows: ^!Keyboard CTRL+PAGEUP ^!Set %top%=^$GetRow$ ^!Keyboard CTRL+PAGEDN ^!Set %not%=^$GetRow$ ^!Set %numrows%=^$Calc(^%bot%-^%top%)$ gets...
23609
Mike Breiding - Morga...
wv.mike
Jan 16, 2013 12:04 am
... I tried that before and got no where. Tried it again - worked. I did not realize the text needed to highlighted to split it. Thanks, Alec. -Mike ...
23610
joy8388608
Jan 19, 2013 5:59 pm
Thanks, Eb. This is similar to the clip I wrote except my clip creates a temporary new doc to work in and fills the screen with text. An issue with your code...