bjjnova said:
A and B are arrays with data records.
There is no precise meaning in Perl of the word "record". Records are
generally stored either as arrays, or as hashes (or as objects, but I'll
ignore that for now). So an array of records is usually either an array of
arrays, or an array of hashes. Alternatively, a record could be neither
an array nor a hash, but rather a flat string which needs to be parsed out
into individual fields each time they are needed. In any event, we can't
help you much more than we already have if you don't show us what you mean
by "record" in this context, preferably by showing some of the code you
already have so far.
Xho