mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-18 06:38:14 +01:00
19 lines
352 B
Markdown
19 lines
352 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
|
|
|
|
include <util/sub_str.scad>;
|
|
include <util/split_str.scad>;
|
|
|
|
echo(split_str("hello,world", ",")); // ECHO: ["hello", "world"]
|
|
|