in reply to Parsing .txt into arrays

- First collect data of one page and insert into an array with new line character as delimiter. Likewise you must have number of arrays equal to number of pages in Log file.

- use map function to traverse each array and use pattern matching to delimit a column value and push into an array using regex special variable.

 map{if(/(.*)<Column Delimiter>(.*)/ig){<your code to assign each value into an array>}}@arr

- Name your arrays for each column based on its value for you to identify it later part of the code. Now you have sorted list of data in arrays.