|
-
Apr 22nd, 2006, 05:45 PM
#1
Thread Starter
Frenzied Member
-
Apr 22nd, 2006, 07:14 PM
#2
Re: Adding 2 Arrays!
Are the two files in the same format? Then (pseudocode):
initialize the array pointer
Open the first file
Call the read-into-array routine with the first file number
Close the first file
Open the second file
Call the read-into-array routine with the second file number
Close the second file
Read-into-array routine
while not eof(file)
read a line
put it into the array
increment the array counter
wend
-
Apr 23rd, 2006, 06:17 AM
#3
Frenzied Member
Re: Adding 2 Arrays!
Combining two arrays:
Array3 = Split(Join(Array1,Delimiter) & Delimiter & Join(Array2, Delimiter),Delimiter)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|