1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 22:28:16 +01:00
dotSCAD/docs/lib-split_str.md
2019-06-17 08:33:00 +08:00

313 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 <sub_str.scad>;
include <split_str.scad>;

echo(split_str("hello,world", ","));  // ECHO: ["hello", "world"]