Parsing CSV Files in F#
Work has presented me with a small data manipulation exercise. That’s another opportunity to do some more scripting in F#! This time I’m processing some Comma-Separated Value (CSV) files. CSV files are one of the lowest forms of semi-structured data, used for representing a simple table of data textually. The basic idea is easy – …