Skip to main content

Split

Splits a string into substrings.

Syntax

split(String, String)
split(String, String, Boolean)

Description

Given two strings A and B, split string AA by the expression BB. The output is a list with the substrings as elements.

calc.split1.calc.png

Given two strings AA and BB and a boolean b, if the value of bb is true, it is the same as above; if bb is false, empty strings "" are omitted. The output is a list with the substrings as elements.

calc.split2.calc.png