(String csv)
| 193 | return null; |
| 194 | } |
| 195 | private static String replace_csv(String csv){ |
| 196 | Matcher m=Pattern.compile("\"(.*?)\"").matcher(csv); |
| 197 | String s; |
| 198 | while(m.find()) |
| 199 | { |
| 200 | s=m.group(); |
| 201 | csv=csv.replace(s, s.replace(",", "|")); |
| 202 | } |
| 203 | return csv.replace("\"", ""); |
| 204 | } |
| 205 | public static Map<String,String> read_dataFile(String folder,String dataFile){ |
| 206 | return read_dataFile(folder,dataFile,false); |
| 207 | } |
no test coverage detected