1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 05:51:41 +02:00
Files
dotSCAD/docs/lib3x-split_str.md
Justin Lin c2081de452 update doc
2021-04-10 16:16:59 +08:00

16 lines
284 B
Markdown

# split_str
Splits the given string around matches of the given delimiting character.
## Parameters
- `t` : The source string.
- `delimiter` : The delimiting character.
## Examples
use <util/split_str.scad>;
assert(split_str("hello,world", ",") == ["hello", "world"]);