| actually if i do this then this should be ok i would presume
String bandName = toks.nextToken();
Pattern removePeriods = Pattern.compile("[\\.]");
System.out.println(removePeriods.matcher(bandName) .rep laceAll (""));
no need to put it in to a temp variable and then p8utting it back again |