1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/docs/lib3x-split_str.md
2022-06-06 13:11:46 +08:00

283 B

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"]);