load-data-file ( filename -- data )
Parsing simple flat files

Prev:load-interval-file ( filename -- table )


Vocabulary
simple-flat-file

Inputs
filenamea string


Outputs
dataan array


Word description
This loads a file that's delineated by semicolons and lines, returning an array of lines, where each line is an array split by the semicolons, with whitespace trimmed off.

Definition