B
Brent Bigler
You can use a character as a delimiter to split a string (e.g.,
Split(myString, ","), but can you split a string using a given number
of characters? Say you have a fixed-width text file where any given
record occupies three rows. The total number of characters per record
is 1086 (3 lines X 160 characters per line + 6 characters for each
vbCRLF). What sort of code could you use to split up the text file?
(pseudocode: split(textFileArray, 1086))
Thanks for any help!
--Brent
Split(myString, ","), but can you split a string using a given number
of characters? Say you have a fixed-width text file where any given
record occupies three rows. The total number of characters per record
is 1086 (3 lines X 160 characters per line + 6 characters for each
vbCRLF). What sort of code could you use to split up the text file?
(pseudocode: split(textFileArray, 1086))
Thanks for any help!
--Brent