Comma Seperated String
-
I have a comma seperated string that I need to be seperated and put into a ArrayList. The string looks like the following: ,-75.91067,45.31986,75.91067 West,45.31986 North,Peter- IT Development,0404000045,{233423},SMTP,27/05/2005 5:20:00 PM,27/05/2005 5:20:07 PM,27/05/2005 17:20:07,Sensors.xml,Y,0,0,0,0,0,0,00000000,01000000,Previous: 0 Current: 0,Previous: 0 Current:1,Previous: 0 Current: 0,Good,0,Pending,Info,Info,,;, Thanks
-
I have a comma seperated string that I need to be seperated and put into a ArrayList. The string looks like the following: ,-75.91067,45.31986,75.91067 West,45.31986 North,Peter- IT Development,0404000045,{233423},SMTP,27/05/2005 5:20:00 PM,27/05/2005 5:20:07 PM,27/05/2005 17:20:07,Sensors.xml,Y,0,0,0,0,0,0,00000000,01000000,Previous: 0 Current: 0,Previous: 0 Current:1,Previous: 0 Current: 0,Good,0,Pending,Info,Info,,;, Thanks
ArrayList l = new ArrayList(myString.Split(',')); -- Rocky Dean Pulley
-
ArrayList l = new ArrayList(myString.Split(',')); -- Rocky Dean Pulley