mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 22:28:16 +01:00
313 B
313 B
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>;
assert(split_str("hello,world", ",") == ["hello", "world"]);