Pattern p = Pattern.compile(""([^"]*)""); Matcher m = p.matcher(line); while (m.find()) { System.out.println(m.group(1)); }