or download this
while(my $line = <INPUTFILE>) {
$line =~ s/&+/&/; # Assuming you have a good reason for this
...
my ($isbn, $ocln, $title, $author, $call_number) = split(/\t/, $li
+ne);# See the variables have been declared
# .. do something here
}