Skip to content

Commit

Permalink
Fix split with delimiter (#32298)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amar3tto committed Aug 23, 2024
1 parent e24a0c4 commit 46cdc4b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,11 @@ private boolean readCustomLine() throws IOException {
// Add to str any previous partial delimiter since we didn't match the whole
// delimiter
str.write(delimiter, 0, prevDelPosn);
delPosn = 0;
if (buffer[bufferPosn] == delimiter[0]) {
delPosn = 1;
} else {
delPosn = 0;
}
break; // Leave this loop and use the fast-path delimiter matching
}
}
Expand All @@ -452,6 +456,8 @@ private boolean readCustomLine() throws IOException {
bufferPosn++;
break;
}
} else if (buffer[bufferPosn] == delimiter[0]) {
delPosn = 1;
} else {
delPosn = 0;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -674,8 +674,10 @@ public void testReadStringsWithCustomDelimiter() throws Exception {
"To be, or not to be: that *is the question: ",
// complete delimiter
"Whether 'tis nobler in the mind to suffer |*",
// edge case: partial delimiter then complete delimiter
"The slings and arrows of outrageous fortune,*||**|",
// truncated delimiter
"The slings and arrows of outrageous fortune,|"
"Or to take arms against a sea of troubles,|"
};

File tmpFile = tempFolder.newFile("tmpfile.txt");
Expand All @@ -689,7 +691,8 @@ public void testReadStringsWithCustomDelimiter() throws Exception {
.containsInAnyOrder(
"To be, or not to be: that |is the question: To be, or not to be: "
+ "that *is the question: Whether 'tis nobler in the mind to suffer ",
"The slings and arrows of outrageous fortune,|");
"The slings and arrows of outrageous fortune,*|",
"*|Or to take arms against a sea of troubles,|");
p.run();
}

Expand Down

0 comments on commit 46cdc4b

Please sign in to comment.