Split Splits a string into substrings. Syntax split(String, String) split(String, String, Boolean) Description split(String, String) Given two strings and , split string by the expression . The output is a list with the substrings as elements. split(String, String, Boolean) Given two strings and and a boolean , if the value of is true, it is the same as above; if is false, empty strings "" are omitted. The output is a list with the substrings as elements. Related functions String, Substring Table of Contents Syntax Description Related functions