1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 13:59:04 +02:00
Files
dotSCAD/docs/lib2x-split_str.md
2020-01-28 17:51:20 +08:00

18 lines
318 B
Markdown

# split_str
The dir changed since 2.0.
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>;
echo(split_str("hello,world", ",")); // ECHO: ["hello", "world"]