forked from Mirrorlandia_minetest/minetest
Fix string.split returning an empty table if string starts with sepearator (#7827)
Calling string.split(":A:B:C:D", ":") returns an empty array. This is due to first empty string not making repeat loop decreasing max_split which has a 0 value when reaching until. Changing max_splits default value from -1 to -2 fixes that issue.
This commit is contained in:
parent
4d4bfb1251
commit
0e306c0842
@ -166,7 +166,7 @@ end
|
|||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
function string.split(str, delim, include_empty, max_splits, sep_is_pattern)
|
function string.split(str, delim, include_empty, max_splits, sep_is_pattern)
|
||||||
delim = delim or ","
|
delim = delim or ","
|
||||||
max_splits = max_splits or -1
|
max_splits = max_splits or -2
|
||||||
local items = {}
|
local items = {}
|
||||||
local pos, len = 1, #str
|
local pos, len = 1, #str
|
||||||
local plain = not sep_is_pattern
|
local plain = not sep_is_pattern
|
||||||
|
Loading…
Reference in New Issue
Block a user