Thanks Raul, that worked perfectly!
Where is that command documented? I looked for awhile, but couldn't find
any clear docs.


On Thu, Mar 3, 2016 at 4:25 PM, Raul Miller <[email protected]> wrote:

> Unless it's huge, I think I'd go:
>
> require'csv'
> list=: readcsv 'c:\tst1.csv'
>
> Thanks,
>
> --
> Raul
>
>
> On Thu, Mar 3, 2016 at 5:20 PM, Skip Cave <[email protected]> wrote:
> > I have a text file that looks like this:
> >
> > col1,col2,col3
> > abc,c101,1
> > def,c102,1
> > ghij,c201,2
> >
> > the file name is "tst1.csv"
> >
> > The location of the file is C:\tst1.csv
> >
> > i want to read the file into a boxed J array
> > called "list"
> >
> > list
> >
> > ┌────┬────┬────┐
> > │col1│col2│col3│
> > ├────┼────┼────┤
> > │abc │c101│
> >
> > 1
> >
> > │
> > ├────┼────┼────
> >
> > ┤
> > │def │c102│
> >
> > 1
> >
> > │
> > ├────┼────┼────┤
> > │ghij│c201│
> >
> > 2
> >
> > │
> > └────┴────┴────┘
> >
> > What utilities have
> > t
> > o be loaded
> > to do this?
> > What are the load commands?
> > What is the file-read, path, and assignment command(s) required to do
> this?
> >
> > Skip
> >
> > Skip Cave
> > Cave Consulting LLC
> > ----------------------------------------------------------------------
> > For information about J forums see http://www.jsoftware.com/forums.htm
> ----------------------------------------------------------------------
> For information about J forums see http://www.jsoftware.com/forums.htm
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to