use struct;
my $first;
my $last;
open (INPUT,'>test.txt') || die "Can't open Test.txt";
open (OUTPUT, '<testb.txt') || die "Can't open Testb.txt";
while (<INPUT>){
($last,$first)=split(',');
print OUTPUT "$first , $last";
}
close INPUT;
close OUTPUT;
</body>
</html> In reply to Re: Refining my Program
by Anonymous Monk
in thread Refining my Program
by EmmittSmith
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |