parseCssString
is a utility function that splits a string into a
vector/array. The function pays attention to text qualifiers (single and
double quotes) so won't split if the delimiter occurs inside a value.
parseCssString(text, separator = ",", removeEmptyString = TRUE)
The text to split.
The field separator, default comma.
TRUE to not return empty string / whitespace values.
An R vector containing the values from text split up.