open (FILE, "data.txt") or die $!; while() { @array = split(/;/); print $array[1], $array[2]; } close(FILE);