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

two arrays i have used to store the valus arrr1 will contact column1 arry2 will contain column2 and I wanted to repsnt in a tabular form , it might be either in HTML tabular form with border or formatted with hypens

Replies are listed 'Best First'.
Re^3: tabular format of data
by deepak_4682us (Initiate) on Feb 18, 2012 at 01:25 UTC
    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
      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.