... How come? For me, it's perfectly matching the whole string 'Axel{Berger}Odenthal39;. Please test it again. I don't have your complete data, so it's difficult...
23480
Axel Berger
absalom_nemini
Dec 4, 2012 12:11 pm
... To be honest, I had not tested, just looked at it, and you're right. It works because you use the greedy find, something I almost never do as a mater of...
23481
John Shotsky
shotsky1
Dec 4, 2012 12:28 pm
If I were doing it, I wouldn't start with leading zeros and then fight them. I'd choose an actual number, such as 10000 as my 'zero' and increment that. ...
23482
flo.gehrke
Dec 4, 2012 3:17 pm
... That's why I said there could be a problem with the dot and made a second proposal. Would you mind testing this? Thanks. Flo P.S. It's always a problem to...
23483
flo.gehrke
Dec 4, 2012 3:46 pm
... If I'm not mistaken this should match your data and expected results: ; Long line start ^!SetArray...
23484
Eb
ebbtidalflats
Dec 4, 2012 6:18 pm
Joy, John's excellent suggestion eliminates a lot of code, to left-pad the version number. Separating the version number from the name makes isolating the...
23485
joy8388608
Dec 4, 2012 10:46 pm
... Very interesting thoughts from everyone and I'm kind of happy that there have been no "why didn't *I* think of that" answers so far. To clarify some...
23486
Ian NTnerd
indiamcq
Dec 5, 2012 5:44 am
... Sorry my last post had junk in it. Let me know what you think. I'd like to see what you have now. Ian H="_incfile" ^!SetDebug Off ; Get the file name (no...
23487
Axel Berger
absalom_nemini
Dec 5, 2012 8:26 am
... Yes, I'm very sorry about that. I had /meant/ to make clear from the outset, that those {} may contain just about "anything" and still be a legal TeX...
23488
joy8388608
Dec 6, 2012 7:58 pm
... Sure. Sorry for the delay. I was away. I usually use farclips instead of functions since I can call them from any library. The calling clip sets a variable...
23489
Ian NTnerd
indiamcq
Dec 7, 2012 4:39 am
... Joy Your clip gots rid of the Loop I used with this RegEx. So it is faster. ^!Set %INFN_StartPos_Trailing_Digits%=^$StrPos("\d+$";"^%INFN_JUSTFN%";R)$ I...
23490
Ian NTnerd
indiamcq
Dec 7, 2012 4:44 am
... Combining your variables with the tip from another post on padding to a length, the above could be rewritten as ^!Set ...
23492
Axel Berger
absalom_nemini
Dec 8, 2012 6:13 pm
... This is not elegant and cobbled together from stuff in my clipbar. You should have set the line length in the editor to your preferred size before running...
23493
warner_hughes
Dec 8, 2012 7:17 pm
I have tried every combination I can think of to use ^$GetFiles()$ to make a list of folders, using the attr "D", per the Help file. Using other attributes I...
23494
puusto13
Dec 8, 2012 8:15 pm
Hi, Thank You. This is what I want. Very good job:) TL...
... Brilliant! Find explanation \R means any return character (?! means and NOT \d means number ... Psalmi means literally that ... ) closes the alternate not...
23497
flo.gehrke
Dec 9, 2012 5:12 am
... There is no 'D' parameter to be used with ^$GetFiles$. I would propose to try two solutions: (1) Using ^$GetFiles$ (needs NT 7.0) ^!Set...
23498
Axel Berger
absalom_nemini
Dec 9, 2012 9:52 am
... Not quite. That neither adds a space to lines nor deletes it from paragraphs. If you're already satisfied with what Split Lines does, you can stop right...
23499
Axel Berger
absalom_nemini
Dec 9, 2012 10:04 am
... If you meant the whole solution without Join Lines, then it doesn't work. The example as copied from the mail has no spaces in front of the unwanted...
23500
flo.gehrke
Dec 9, 2012 12:17 pm
... Thanks for correcting this! I can't see, however, that puusto13 asked for word-wrap, empty lines etc. For me, the guiding principle is what we see from the...
23501
Axel Berger
absalom_nemini
Dec 9, 2012 1:29 pm
... Absolutely. However in a mail lines are usually hard-wrapped, whether intended or not. My main reason, to be honest, was though, that I adapted an earlier...
23504
Axel Berger
absalom_nemini
Dec 9, 2012 3:56 pm
... I don't quite understand. This sounds like "Microsoft-Word-Speak" to me, nothing you can achieve in an editor. Although, if you can explain, what you...
23505
puusto13
Dec 9, 2012 5:09 pm
Hi Axel, ... It is this ¬ Enter is ¶ If it is unpossible use in notetab clip so I can do it manually. ... Ok. ... Please if You like, You can use the first...
23506
david335577
Dec 10, 2012 10:32 pm
I would like to write a Clip to open the path in the current file at the cursor. I mean "open" here to be the "open" Windows verb. In case you don't know what...
23507
Ian NTnerd
indiamcq
Dec 11, 2012 1:37 am
... ^!Select FILENAME ^!shell ^& Works the second time after an error the first time. That seems like a bug. ^!shell ^$GetLine$ This works if the path and file...
23508
david335577
Dec 11, 2012 5:07 pm
This works when there are no embedded spaces, otherwise it fails, ignoring any current selection. I apologize for not giving an example file that contains...
23509
Axel Berger
absalom_nemini
Dec 11, 2012 7:56 pm
... No. There is a general rule that if you want to work in the command line, which is what the Shell function does, you MUST NOT have spaces in file names....
23510
John Shotsky
shotsky1
Dec 11, 2012 8:04 pm
I use the command line where folders, executables and/or files have spaces all the time. Just use double quotes around the whole path/file names. I store my...
23511
loro
yastupidhoo
Dec 12, 2012 12:53 am
... It will work. I've used exactly that in a clip without problems. Lotta...