S
scifluent
String input = "DATA,{23.11,58.25},{23,33,43},{20070705,20070805}";
String[] splitLine = input.split(",{");
doesn't work. I've tried escaping the { by using
String[] splitLine = input.split(",\{");
but Eclipse tells me that { is not an escapable character.
Anybody have a suggestion???
Thanks!
String[] splitLine = input.split(",{");
doesn't work. I've tried escaping the { by using
String[] splitLine = input.split(",\{");
but Eclipse tells me that { is not an escapable character.
Anybody have a suggestion???
Thanks!