in reply to Re^2: tabular format of data
in thread tabular format of data

A.txt:- A:B C:D code: # it has column1 values of txt file @a1=`cut -d":" -f1 < A.txt; # it has column2 values of txt file @a2=`cut -d":" -f2 < A.txt; I wanted to reprent the values in tabular form

Replies are listed 'Best First'.
Re^4: tabular format of data
by deepak_4682us (Initiate) on Feb 18, 2012 at 02:35 UTC
    i haved added the below lines in the script and i got some error: // my @data; foreach (my $i = 0; $i < @Arr1 && $i < @Arr2; $i++) { $data$i = $Arr1$i, $Arr2$i; } // error: syntax error near "];" / ---------------- still exists---- Also, i have tried to use Text: ASCIITable and its saying cann't locate ASCIITable.pm in @INC how can i resolve the issue
A reply falls below the community's threshold of quality. You may see it by logging in.
A reply falls below the community's threshold of quality. You may see it by logging in.
A reply falls below the community's threshold of quality. You may see it by logging in.