Search found 1001 matches

by jpuziano
Mon Feb 25, 2013 8:38 am
Forum: Technical / Scripting
Topic: Finish this, please.
Replies: 8
Views: 6852

Hi PepsiHog, Interesting... First, here's the answer: let>Number=22 let>Data=01:02;10:22;08:32;44:52;10:22; MDL>Data Let>pattern=((\d\d:%Number%)|(%Number%:\d\d));(.*) RegEx>pattern,Data,0,match,nm,1,$4,Data MDL>Data The above will work whether Number = 10 or 22 or any two digits in your data. It te...
by jpuziano
Mon Feb 25, 2013 3:04 am
Forum: Technical / Scripting
Topic: Finish this, please.
Replies: 8
Views: 6852

Hi PepsiHog,

Only have the Blackberry at the moment. Please just post an example of your data string and what you want to do to it and I'll take a look later tonight... Not a problem. :)
by jpuziano
Sun Feb 24, 2013 6:59 am
Forum: Technical / Scripting
Topic: Finish this, please.
Replies: 8
Views: 6852

Hoping someone can tell me how to do this. I have a RegEx looking for one pattern or another. But I only want the first instance to be removed, not the second. (if there even is a second) Sure thing - here's how I would do that: let>Number=10 let>Data=01:02;10:22;08:32;44:52;10:22; MDL>Data Let>pat...
by jpuziano
Fri Feb 22, 2013 6:34 pm
Forum: Beginners
Topic: Displaying file contents of files with Hex 00 values
Replies: 3
Views: 9528

jpuziano, thank you for your help. I hadn't run into the RegEx function before, but I certainly won't forget it now! Well glad I could help! Yes Regular Expressions are quite amazing... I encourage anyone reading this to experiment with the RegEx> command. Also, you used this: Let>pattern= [ \x00 ]...
by jpuziano
Fri Feb 22, 2013 8:55 am
Forum: Beginners
Topic: Displaying file contents of files with Hex 00 values
Replies: 3
Views: 9528

Hi malvern, You are simply running into the concept of the null-terminated string. http://en.wikipedia.org/wiki/Null-terminated_string i.e. the first Null it runs into (hex 00) it thinks it has reached the end of the string and does not display anything beyond that. The easiest would be just to use ...
by jpuziano
Thu Feb 21, 2013 7:15 pm
Forum: Technical / Scripting
Topic: Needed Advice for reading a large CSV file
Replies: 11
Views: 10982

Re: DBQuery

Yes a few tenths of a second may not matter but who knows what would happen with a much larger recordset. It is good to know about both methods. Results with 100k and 1 million patients. Total Patients: 100,000 JP's method Time to Process = 0.037 JRL's method Time to Process = 0.45 Total Patients: ...
by jpuziano
Thu Feb 21, 2013 5:09 pm
Forum: Technical / Scripting
Topic: Needed Advice for reading a large CSV file
Replies: 11
Views: 10982

Re: DBQuery

Hi kpassaur, Great looks like DBQuery is the way to go! Not sure why you'd conclude that :? because according to JRL's timings... my method is from 4 to 20 times faster than DBQuery. Also now just saw JRL's second post... Yes a few tenths of a second may not matter but who knows what would happen wi...
by jpuziano
Thu Feb 21, 2013 6:58 am
Forum: Technical / Scripting
Topic: Needed Advice for reading a large CSV file
Replies: 11
Views: 10982

Hi kpassaur, 40 seconds huh... ouch. Here's some thoughts for faster record retrieval: - Read all the data into a single variable using ReadFile> - Then use a RegEx command to locate the record you want by matching the patient number and also match all non CRLF chars after that which will get you ev...
by jpuziano
Wed Feb 20, 2013 4:53 pm
Forum: Technical / Scripting
Topic: StringGrid Part III , different ColWidth
Replies: 12
Views: 14026

Hi olllllliii and JRL, The ability to auto-size column width and/or height in a StringGrid object based on the data loaded would be a great feature even if its something we'd have to code ourselves. A little Googling found the link below and even though its Delphi code, perhaps it will be helpful: ....
by jpuziano
Wed Feb 20, 2013 4:29 pm
Forum: Technical / Scripting
Topic: Using Regex in Search and Replace
Replies: 14
Views: 12408

Re both questions I will need to ask the developers of the editing component. I have no idea what the template thing is either. I will also need to refer back to the syntax editor developers. OK, thanks for the reply. Please let us know when you find out more. Maybe that template thing is something...
by jpuziano
Sat Feb 16, 2013 6:01 pm
Forum: Technical / Scripting
Topic: Using Regex in Search and Replace
Replies: 14
Views: 12408

REGEX Rocks eh. Indeed it does Phil... :D indeed it does. Q1) Marcus, can the Replace field be enhanced so that it does understand a backreference when Options/Regular expressions is checked? Q2) Marcus or anyone - In the Search/Replace Dialog, under Options, there is a checkbox called "Replace wit...
by jpuziano
Thu Feb 14, 2013 8:50 pm
Forum: General Discussion
Topic: Position command and comma??
Replies: 4
Views: 9869

Re: Position command and comma??

Hi andrewbarbour, It seems to work because yes... the % chars around %strLine% mean that the comma ' chars within your string are no longer being confused as parameter separators in the Position> command... however you said... I am looking to find the position of the "close bracket comma space" i.e....
by jpuziano
Tue Feb 12, 2013 5:55 pm
Forum: Enhancement Suggestions
Topic: Suggested addition for Complex Expressions
Replies: 15
Views: 21301

Hi JRL, Cool script... here's the results for my MS 12 install: 200 of 475 files contain a total of 1905 instances of "" I haven't seen an instance of not working either... however if anyone out there can come up with such an example, I heartily encourage you to post it. I am all for fixing bugs if ...
by jpuziano
Mon Feb 11, 2013 8:22 pm
Forum: Beginners
Topic: ASK - Not displaying '&' correctly.
Replies: 2
Views: 17823

Hi BrianM and JRL, You also have to watch out for the special properties of the Ampersand & char when creating Label text in dialogs... and with label text you place on a Button in a dialog and other objects... its just a Windows thing. In Microsoft Windows menus, labels and other captions, the ampe...
by jpuziano
Mon Feb 11, 2013 12:48 am
Forum: Beginners
Topic: Wait for leftclick then continue script
Replies: 6
Views: 12623

Hi JRL, Thank you very much for posting the above script. After I commented out the reset message you were popping up, I did get it working. Then I was thinking that on a faster PC, a person would have to adjust those counter values to properly detect the double left click and I wanted a method that...
Sign up to our newsletter for free automation tips, tricks & discounts