,
Input: "John,32,New York" Split on: "," Output: ["John", "32", "New York"]
Input: "First line Second line Third line" Split on Newline: true Output: ["First line", "Second line", "Third line"]
Input: "#happy #coding #automation" Split on: " " Output: ["#happy", "#coding", "#automation"]