Fields are separated by commas and *optionally* enclosed in double quotes. Records are separated by CrLf. If a field contains a comma then it must be surrounded by double quotes. If a field contains a double quote then it is escaped by using two double quotes. If a field contains a Crlf it must be surrounded by double quotes |
$data = GetFile("c:\temp\test.csv") $rows = Val(CsvGet($data,"rows")) $x = 0 Repeat $x = $x + 1 $col3 = CsvGet("*","$x,3") // do what ever you want with $col3 Until $x = $rows |