I am parsing a CSV
and whenever the trailing records are empty:
StringSplit[",2,,4,,",","]
I get:
{"2", "", "4"}
But I was expecting:
{"", "2", "", "4", "", ""}
Is there an option for StringSplit
to do that?
I am parsing a CSV
and whenever the trailing records are empty:
StringSplit[",2,,4,,",","]
I get:
{"2", "", "4"}
But I was expecting:
{"", "2", "", "4", "", ""}
Is there an option for StringSplit
to do that?