0001:97 Ford Mustang:Red:46000:9990.00 0002:99 Chevy Blazer:Black:19000:17000.00 #### @car_data = `cat data.file`; foreach (@car_data) { @temp_data = ""; # clear this array @temp_data = split(/:/,$_); # split the current line by semi-colin into the array @temp_data print "$car_data[1]\n"; # prints the link }