Skip to content

Commit

Permalink
fix win
Browse files Browse the repository at this point in the history
  • Loading branch information
theshadowco committed Oct 5, 2023
1 parent 3c576b7 commit 711f9cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
public class ParseSupportData {

// взято из https://stackoverflow.com/questions/18144431/regex-to-split-a-csv
private static final String REGEX = "(?:,\\n?|\\n|^)(\"(?:(?:\"\")*[^\"]*)*\"|[^\",\\n]*|(?:\\n|$))";
private static final String REGEX = "(?:,[\\n\\r]*|\\n|^)(\"(?:(?:\"\")*[^\"]*)*\"|[^\",\\n]*|(?:\\n|$))";
private static final Pattern patternSplit = Pattern.compile(REGEX);

private static final int POINT_COUNT_CONFIGURATION = 2;
Expand Down

0 comments on commit 711f9cb

Please sign in to comment.