Hi,
m using split function to parse the csv file ..... i m getting problem in one line of file which looks like this :
"BLUEUSBXM" ,"X-MICRO (XBT-DG5R (C) R1) BLUETOOTH USB DONGLE PLUS, CLASS 1",360,0.00,"", "",0.00,"",0,0. 00,"","T1","",5 .58,"4000",8.50 ,0.00,"02/10/2006",0.00,"16/04/2007"
now the problem is it parses first field properly.
BUT
Not parsing second field.....
avars = split(line,",")
should give:
avars(1) = "X-MICRO (XBT-DG5R (C) R1) BLUETOOTH USB DONGLE PLUS, CLASS 1"
instead of that it gives me:
avars(1) = "X-MICRO (XBT-DG5R (C) R1) BLUETOOTH USB DONGLE PLUS"
how can i solve this problem....
Thanks
Pindoriya1
m using split function to parse the csv file ..... i m getting problem in one line of file which looks like this :
"BLUEUSBXM" ,"X-MICRO (XBT-DG5R (C) R1) BLUETOOTH USB DONGLE PLUS, CLASS 1",360,0.00,"", "",0.00,"",0,0. 00,"","T1","",5 .58,"4000",8.50 ,0.00,"02/10/2006",0.00,"16/04/2007"
now the problem is it parses first field properly.
BUT
Not parsing second field.....
avars = split(line,",")
should give:
avars(1) = "X-MICRO (XBT-DG5R (C) R1) BLUETOOTH USB DONGLE PLUS, CLASS 1"
instead of that it gives me:
avars(1) = "X-MICRO (XBT-DG5R (C) R1) BLUETOOTH USB DONGLE PLUS"
how can i solve this problem....
Thanks
Pindoriya1
Comment