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
| [reply] |
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
| [reply] |