I am trying to split this string
String string1 = "Employee:\"Timothy Jones\" and Job:\"Senior Management\" and Hired:\"2003\"";
using
String[] splitArray = string1.split("###");
But I am having a lot of trouble with the regex to split it into what I want. My desired result is
employee, Timothy Jones, and, Job, Senior Mangement, and Hired, 2010
The main problem seems to be the text inside the quotes splitting on the whitespace.