1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-24 21:41:33 +02:00
Files
dotSCAD/docs/lib2-split_str.md
Justin Lin 8fa2de0a60 update doc
2019-06-23 10:05:02 +08:00

323 B

split_str

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