Some observations. On Windows 7 you should be using the windows plugin version of keys and the {sinp} type. You have excessively long waits. 50 should be...
2422
antojuna
Apr 2, 2011 5:57 am
I am long happy user of Windows 2000 SP4 but Microsoft changes and I have to do it. I would rather not to do it but it's time. In spite of all I am not in...
2423
Sheri
silvermoonwo...
Apr 2, 2011 2:06 pm
... I would suggest to use hex representation for space \x20 because it is more obvious what it means in a regex pattern than \40 and hex is recognized in...
2424
antojuna
Apr 4, 2011 5:51 am
... I come back to give the last result of my previou question. I'm very happy with this script, it's useful for me but I'm not the mind behind it. I would...
2425
Sheri
silvermoonwo...
Apr 4, 2011 1:38 pm
... I'm not experiencing that, but no harm in using a backslash in front of the A as you have in the replacement text. ... OK, I rarely use the older functions...
2426
brother.gabriel
May 4, 2011 4:46 pm
Hello! (Sheri?) I am trying to regex something. I want to find this single phrase in an entire file, so I readall the file and use this here regex to find it:...
2427
Sheri
silvermoonwo...
May 4, 2011 10:04 pm
... Hi Brother Gabriel-Marie, When you run that command, you should be seeing an error dialog, I do: ERRORS: regex.pcreCcompile: PCRE compilation failed at...
2428
brother.gabriel
May 5, 2011 12:18 am
Sheri, thank you very much! Can you show me where the \K should go? I don't quite understand. There are . and $ in the pattern, but they are escaped - is...
2429
Sheri
silvermoonwo...
May 5, 2011 5:52 am
... The \K would go where your present lookbehind ends. dot and dollar are metacharacters only when they are not escaped. you included an "x" (extended)...
2430
brother.gabriel
May 5, 2011 2:57 pm
Sheri, like this?: local whatversionpat = regex.pcrecompile(?~(?is)(?<=const92;K)(?<=versionnumber92;$=\K")92;d+\.\d+(?=")~) I tried this too, to no avail: local...
2431
Sheri
silvermoonwo...
May 5, 2011 4:30 pm
... Hi again, I asked you to get rid of the lookbehind assertion and use \K instead, that the \K would go at the end of the part previously included in the...
2432
brother.gabriel
May 5, 2011 6:07 pm
Thank you for your patience, Sheri. I finally got it with: local whatversionpat = regex.pcrecompile(?~(?is)const92;s+versionnumber\$92;s+=\s+"92;K\d+\.92;d+(?=")~) I...
2433
Sheri
silvermoonwo...
May 5, 2011 10:15 pm
... I would not recommend using different flavors of regex for composing your regular expressions. I believe Expresso is for dot net, and dot net's regex...
2434
brother.gabriel
May 6, 2011 4:17 pm
Thanks, Sheri, that regex tester is the one I was referring to. I have been using the tester. However, expresso is a builder, which is very nice. They...
2435
Sheri
silvermoonwo...
May 6, 2011 8:18 pm
... You said "The other problem I had was I was running the statement through the PP Regular Expression Tester and it finding "Num" - but PP finds the version...
2436
ad072069
Jun 30, 2011 5:54 am
I've been using PowerPro for probably close to ten years. Mostly what I use it for is to just have a menu pop up on the screen wherever I want of my favorite...
2437
echo_zooloo
Jun 30, 2011 4:12 pm
Is it true that PowerPro is not supported on Win7 64-bit ?...
2438
Robert Bull
barlennan
Jun 30, 2011 7:28 pm
Thursday, June 30, 2011, 3:30:30 AM, ad072069 wrote: a> Now with Windows 7 UAC always prompts me at startup to let a> PowerPro run. I can't find any way...
2439
ad072069
Jul 1, 2011 11:37 pm
Thank you Robert...
2440
antojuna
Aug 22, 2011 5:50 am
I would like to know if it is possible to make some operations inside a simple text file (*.txt) from a specific position. Something like to get all the lines...
2441
Sheri
silvermoonwo...
Aug 22, 2011 7:11 pm
... Check the regex.chm file in your powerpro plugins folder for documentation of functions that let you specify the start offset. You could use the offset...
2442
antojuna
Aug 24, 2011 4:59 am
... Thanks for your answer. I keep reading about it but I don't get a clear idea on it. I made a small script local p local text = "superinflation" p =...
2443
Sheri
silvermoonwo...
Aug 24, 2011 10:36 pm
I don't understand what you really need to do. Hopefully you can give a better example. If you want to replace from a specified position til the end: local...
2444
antojuna
Aug 25, 2011 8:36 am
I'm sorry for my bad explanations. At first I only wanted to know what Power Pro could do but I really didn't know what I was asking for. Your examples are...
2445
Sheri
silvermoonwo...
Aug 25, 2011 5:06 pm
... Using hVec[2] would not be a very good solution since that would only work when the match is exactly two characters long. What I would suggest instead is...
2446
antojuna
Aug 26, 2011 3:32 pm
Thanks for your effort. I haven't tested your script because, firstly, I prefer to understand all the lines. So I have to learn more about \K, $# and...
2447
antojuna
Aug 26, 2011 4:42 pm
silvermoonwoman2001 wrote: "I don't think the old ampersand evaluation of variables should ever be used in a powerpro script." This is a part of an script I...
2448
Sheri
silvermoonwo...
Aug 26, 2011 8:20 pm
... day = formatdate("ddMMyy",date) hour = formattime("HH",time) num = day++"."++hour++"."++uptime nom = inputtext .... ...
2449
Sheri
silvermoonwo...
Aug 26, 2011 8:36 pm
... I'm confused. What is the desired end result? Is it this: #1 blah, blah (language B) blah, blah (originally shown with A) #1 blah, blah (language A) blah,...
2450
antojuna
Aug 27, 2011 10:08 am
This is a script that works well, but I have some questions. local res = "m:/auxnum.txt" local ch=?"$#" local textA = file.readall("m:/auxiliar1.txt") local...