Thread Subject: read the first line from a csv file of unknown length

Subject: read the first line from a csv file of unknown length

From: Philip Gladwin

Date: 16 Nov, 2007 16:37:05

Message: 1 of 3

Hello,
Does anybody know how to solve this problem?

I would like to read the column headings, as strings,
from the first row of a comma-separated file into
an string array.

The tricky part is I would like to do this without
specifying the number of columns in the file, as
the column headings will change from file to file.

Can anybody help?

Thank you.

Phil,

Subject: read the first line from a csv file of unknown length

From: Scott Burnside

Date: 16 Nov, 2007 18:16:09

Message: 2 of 3

"Philip Gladwin" <philip.gladwin@citi.com> wrote in
message <fhkgvh$oor$1@fred.mathworks.com>...
> Hello,
> Does anybody know how to solve this problem?
>
> I would like to read the column headings, as strings,
> from the first row of a comma-separated file into
> an string array.
>
> The tricky part is I would like to do this without
> specifying the number of columns in the file, as
> the column headings will change from file to file.
>
> Can anybody help?
>
> Thank you.
>
> Phil,
>
>

Phil, you can take a look at autodataread.m in the FEX. I
parse the header as you describe.

hth,
Scott
>
>
>
>

Subject: read the first line from a csv file of unknown length

From: Dan Haeg

Date: 16 Nov, 2007 18:20:23

Message: 3 of 3

"Philip Gladwin" <philip.gladwin@citi.com> wrote in message
<fhkgvh$oor$1@fred.mathworks.com>...
> Hello,
> Does anybody know how to solve this problem?
>
> I would like to read the column headings, as strings,
> from the first row of a comma-separated file into
> an string array.
>
> The tricky part is I would like to do this without
> specifying the number of columns in the file, as
> the column headings will change from file to file.
>
> Can anybody help?
>
> Thank you.
>
> Phil,
>
>
>
>
>
>
This may work:
h = actxserver('Scripting.FileSystemObject');
ts=h.OpenTextFile(filename);
headings=ts.ReadLine;

Dan

Tags for this Thread

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

rssFeed for this Thread

Contact us at files@mathworks.com