in reply to Re^2: Best way to store/access large dataset?
in thread Best way to store/access large dataset?

The problem lies in my actual file names and the way the column variable is assigned. I have a couple types of file formats unfortunately...

Type 1 = combinationoftextnumbersandcaharacter.fileextension Type 2 = combinationoftextnumbersandcaharacter.combinationoftextnumber +sandcaharacter.fileextension

In either case, only the first block is needed. The second block in Type 2 can be ignored as well as the file extension for both.
I'm going to look at regular expressions and try to make that work.

Replies are listed 'Best First'.
Re^4: Best way to store/access large dataset?
by Speed_Freak (Sexton) on Jun 22, 2018 at 16:11 UTC

    I was able to read in the ID file by doing the following:

    my @split_names = split(/\./,$fileext); my ($column) = $split_names[0];

    But that only creates problems in the follow on summation block.