Split Command
- Split( <Text>, <List of Texts to split on>)
-
Creates the list of texts obtained by splitting the given text at the given separators (not included in the list).
Split("3cos(t)cos(2y)", {"cos"})
returns {"3", "(t)", "(2y)"}
.
Creates the list of texts obtained by splitting the given text at the given separators (not included in the list).
Split("3cos(t)cos(2y)", {"cos"})
returns {"3", "(t)", "(2y)"}
.