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
 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com