(String csv)
| 237 | return null; |
| 238 | } |
| 239 | private static String replace_csv(String csv){ |
| 240 | Matcher m=Pattern.compile("\"(.*?)\"").matcher(csv); |
| 241 | String s; |
| 242 | while(m.find()) |
| 243 | { |
| 244 | s=m.group(); |
| 245 | csv=csv.replace(s, s.replace(",", "|")); |
| 246 | } |
| 247 | return csv.replace("\"", ""); |
| 248 | } |
| 249 | } |
no test coverage detected