Fix split function to handle trailing delimiters correctly #12423
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes enhancements to the
split
function in thestrings/split.py
file to handle cases where the separator appears at the end of the input string. The most important changes include adding new test cases and modifying the function logic to append an empty string when the input string ends with the separator.Enhancements to
split
function:strings/split.py
: Added a test case for input strings where the separator appears at the beginning and end of the string.strings/split.py
: Modified the function logic to append an empty string to the result list if the input string ends with the separator.### Describe your change:Add an algorithm?
[x ] Fix a bug or typo in an existing algorithm?
Add or change doctests? -- Note: Please avoid changing both code and tests in a single pull request.
Documentation change?
Checklist: