changing doc format and HTML literals

This commit is contained in:
udo
2026-04-22 01:56:46 +00:00
parent 8223dcc6b3
commit f7b066b374
123 changed files with 1917 additions and 1611 deletions
+9 -6
View File
@@ -6,12 +6,15 @@ str : string to be split
delim : delimiter
return value : a list of strings
:desc
Splits 'str' into multiple strings based on the given delimiter 'delim'.
:see
>string
:related
**PHP:** `explode()` or `preg_split()`
**JavaScript / Node.js:** `String.prototype.split()`
:content
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()`