Skip to content
New issue

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

Undocumented change in split behavior #21938

Closed
MeWhenI opened this issue Jul 26, 2024 · 1 comment
Closed

Undocumented change in split behavior #21938

MeWhenI opened this issue Jul 26, 2024 · 1 comment
Labels
Bug This tag is applied to issues which reports bugs.

Comments

@MeWhenI
Copy link

MeWhenI commented Jul 26, 2024

Describe the bug

Between 0.4.6 and 0.4.7, the behavior of string.split changed, specifically when splitting on a multi-character delimiter where the source string has two instances of the delimiter right beside eachother.

Reproduction Steps

Code: https://play.vlang.io/p/9c7af8ea27

println("abcbca".split("bc"))

Expected Behavior

Expected output to match output in 0.4.6:

['a', '', 'a']

Current Behavior

Actual output:

['a', 'bca']

Possible Solution

No response

Additional Information/Context

A user on Discord indicated this change was introduced in PR #21563.

Also, this bug does not occur with a single-character delimiter. The code

println("abba".split("b"))

works as expected, producing

['a', '', 'a']

V version

V 0.4.7 52fe7c0

Environment details (OS name and version, etc.)

V full version: V 0.4.7 52fe7c0
OS: linux, Debian GNU/Linux 11 (bullseye) (VM)
Processor: 1 cpus, 64bit, little endian, Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz

getwd: /home/admin/playground
vexe: /home/admin/v/v
vexe mtime: 2024-07-26 18:25:25

vroot: OK, value: /home/admin/v
VMODULES: OK, value: .vmodules
VTMP: OK, value: /tmp/v_0

Git version: git version 2.30.2
Git vroot status: Error: fatal: detected dubious ownership in repository at '/home/admin/v'
To add an exception for this directory, call:

	git config --global --add safe.directory /home/admin/v
.git/config present: true

CC version: cc (Debian 10.2.1-6) 10.2.1 20210110
thirdparty/tcc status: Error: fatal: detected dubious ownership in repository at '/home/admin/v/thirdparty/tcc'
To add an exception for this directory, call:

	git config --global --add safe.directory /home/admin/v/thirdparty/tcc
 Error: fatal: detected dubious ownership in repository at '/home/admin/v/thirdparty/tcc'
To add an exception for this directory, call:

	git config --global --add safe.directory /home/admin/v/thirdparty/tcc

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.

@MeWhenI MeWhenI added the Bug This tag is applied to issues which reports bugs. label Jul 26, 2024
@Delta456
Copy link
Member

Closing as duplicate of #21936

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug This tag is applied to issues which reports bugs.
Projects
None yet
Development

No branches or pull requests

2 participants