Here is my Perl code:
foreach my $line (@tmp_field_validation)
{
chomp $line;
my ($cycle_code,$cycle_month,$cycle_year)= split /\s*\|\s*/, $line;
$cycle_code=~ s/^\s*(.*)\s*$/$1/;
$cycle_month=~ s/^\s*(.*)\s*$/$1/;
$cycle_year=~ s/^\s*(.*)\s*$/$1/;
print "$line\n";
print "$cycle_code|$cycle_month|$cycle_year";
}
Here is the output:
1 10 2009
1 10 2009||
What's wrong over here? I expected the pipes to be between the variables. Why are the pipes getting printed after all the three variables?
EDIT: tmp_field_validation is the output of an sql query which has a select statement like :
select cycle_code,cycle_month,cycle_year from ....
so the output is coming as 3 different columns when i executed the query in TOAD. but the same query when used in this script how could it be possible that the output is considered as the single field cycle_code