I have read a text file into BufferedReader
my first line and second has this information:
How can I derive the minutes and seconds and save it to String minutes, seconds. This is an extract of code I have written so far:Date Time Number Duration
01/01/2007 00:01 0202332981 1:04
String strLine; //Read File Line By Line while ((strLine = br.readLine()) != null) { // What do I do with strLine so the minutes and seconds are extracted? }
Thank you