mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-09-25 05:51:41 +02:00
update doc
This commit is contained in:
16
docs/lib2-split_str.md
Normal file
16
docs/lib2-split_str.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# split_str
|
||||
|
||||
Splits the given string around matches of the given delimiting character.
|
||||
|
||||
## Parameters
|
||||
|
||||
- `t` : The source string.
|
||||
- `delimiter` : The delimiting character.
|
||||
|
||||
## Examples
|
||||
|
||||
include <util/sub_str.scad>;
|
||||
include <util/split_str.scad>;
|
||||
|
||||
echo(split_str("hello,world", ",")); // ECHO: ["hello", "world"]
|
||||
|
Reference in New Issue
Block a user