lets say i have an array of String[] with this on it
HOw can i format its contents so that i get rid of the .txt on each component. Do i need to save them to a file, then read the file (get the line up the the dot) and then store it back the array or is there a simpler way!Code:String[] file = new String[3];
file [0] = "abc.txt";
file [1]= "def.txt";
file [2] = "ghi.txt";

