I need to declare, fill and access a hash or arrays of int.
all the information is stored in a log file from where i have to capture what's required and then store the data structure accordingly.
The processing of the file is obviously done line by line.
my code right now looks like this:
data structure declaration
while(<>) {
#capture key(string) and key details (array of ints)
#fill up the data structure accordingly
}
print the info.
VERY URGENT
pls help.
Start Free Trial