1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix String.split() with empty string and delimeter

This commit is contained in:
VolTer
2023-02-01 23:29:17 +01:00
parent d01ac9c736
commit 57e39d0ce9
2 changed files with 16 additions and 0 deletions

View File

@@ -1157,6 +1157,14 @@ Vector<String> String::split_spaces() const {
Vector<String> String::split(const String &p_splitter, bool p_allow_empty, int p_maxsplit) const {
Vector<String> ret;
if (is_empty()) {
if (p_allow_empty) {
ret.push_back("");
}
return ret;
}
int from = 0;
int len = length();