We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
string split is buggy
println('aaaa'.split('aa'))
['', '', '']
['', 'aa']
No response
possibly caused by #21563
0.4.7
https://play.vlang.io/
Note
You can use the 👍 reaction to increase the issue's priority for developers.
Please note that only the 👍 reaction to the issue itself counts as a vote. Other reactions and those to comments will not be taken into account.
The text was updated successfully, but these errors were encountered:
bf04adc
Bump V to get a bugfix
89c42a6
Fixes vlang/v#21936
Successfully merging a pull request may close this issue.
Describe the bug
string split is buggy
Reproduction Steps
println('aaaa'.split('aa'))
Expected Behavior
['', '', '']
Current Behavior
['', 'aa']
Possible Solution
No response
Additional Information/Context
possibly caused by #21563
V version
0.4.7
Environment details (OS name and version, etc.)
https://play.vlang.io/
Note
You can use the 👍 reaction to increase the issue's priority for developers.
Please note that only the 👍 reaction to the issue itself counts as a vote.
Other reactions and those to comments will not be taken into account.
The text was updated successfully, but these errors were encountered: