Hi
I am trying to store each string into a variable from a string array. I have a string like
string[] fileContent = ftp.ReadFiles(cellValue); fileContent array holding the values as given below
"1","Truck","FN60HZU","'WC",,"26/03/2022","H2","KS","2","29580225","GY","KMAXD","12","12","12",,"17","5TST001","16:01:00","16:07:16","40:D3:AE:CB:16:EE"
"2","Truck","YD17AMM","'WC",,"26/03/2022","H2","KS","1","31570225","BS","DURAVIS","11","11","11",,"17","5TST001","15:55:31","16:00:11","40:D3:AE:CB:16:EE"
"2","Truck","YD17AMM","'WC",,"26/03/2022","H2","KS","1","31570225","BS","DURAVIS","11","11","11",,"17","5TST001","15:55:31","16:00:11","40:D3:AE:CB:16:EE"
foreach (string s in fileContent)
{
string vehicleType = "Truck",
string regno = ""FN60HZU"
..................................
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
}
How can I store each string into a variable ?
Regards

