If you are not in control of the source file, you have a couple of choices.
a) Complain to the person who generated it and get them to fix it as described above.
"Field, the first","Second","Third"
b) If there are always supposed to be 3 fields, and the spurious commas only show up in the first field:
Read the line in.
Use Split to split the input into fields, with a comma delimiter
If there are 4 fields in the result,
field 1 = inputfield1 & inputfield2
Field2 = inputfield3
Field3 = inputfield4
otherwise, 1=1, 2=2, and 3 = 3 as you would expect.
If commas can show up anywhere, there really is no hope for this file.
Enter your message below
Sign in or Join us (it's free).