Splits given string by spaces (even if multiple).
splitExpression(" 1 2 3 4 5 "); // ["1", "2", "3", "4", "5"]splitExpression("1 2 3 4 5"); // ["1", "2", "3", "4", "5"]splitExpression("12345"); // ["12345"]
An array with all elements of the given expression.
string to be parsed.
Splits given string by spaces (even if multiple).
Example
Returns
An array with all elements of the given expression.