09-15-2007 08:14 AM
09-15-2007 09:42 AM
09-15-2007 12:03 PM
09-15-2007 04:49 PM
09-16-2007 04:21 AM
Yes, [A-Z] finds any "big" alphabetic character, one can use [A-Z,a-z] for any alphabetic char. I have made another piece of code which I have tested on the file you sent. Here I use "[A-Z,a-z]newline" to find all "places" in file where an alphabetic char is followed by a newline. Starting from these "places" scan from string is used to format each line in string to double. Scan from string is inside a while loop which stops when errror occurs, which (I think) should be end of the recordset.
Have a look !
Sture
09-16-2007 07:42 AM
09-16-2007 11:59 AM
Ooops suddenly realized....If all recordsets not have the same length, there will be zero-padding on the shorter ones. If one instead use an array of clusters each recordset can have different length. See code below.
/Sture
09-16-2007 02:19 PM
09-18-2007 12:55 PM
09-18-2007 03:45 PM - edited 09-18-2007 03:45 PM
Message Edited by sture on 09-18-2007 03:47 PM