cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+2 -3
View File
@@ -14,7 +14,6 @@ Splits `str` into multiple strings using `delim` as the separator.
Every exact occurrence of `delim` creates a new entry in the returned `StringList`.
Related:
- PHP: `explode()` or `preg_split()`
- JavaScript / Node.js: `String.prototype.split()`
:example
print(join(split("a,b,c", ","), "|"), "\n");