In Perl can I create my data in Excel worksheet instead of a text file. And use the character "|" as a delimiter. I am using the following code to create a text file
for(my $j = 0; $j < $num2; $j++) {
print {$out} $destination[$j]|$IP_one_1[$j]|$IP_one_2[$j]|$IP_one_3[$j]|$IP_one_4[$j]|$reached[$j]|$IP_two_1[$j]|$IP_two_2[$j]|$IP_two_3[$j]|$IP_two_4[$j]\n";
In Perl can I create my data in Excel worksheet instead of a text file. And use the character "|" as a delimiter the expression {$out}
is consists of a filename that i have defined earlier and it reads as open my $out,'>', "$file.rec" or die $!;
Cheers,