Skip to content

IO: streaming input data

3 messages · jesse daniel, jim holtman, Jorge Ivan Velez

#
Hello -

I need to read in some tables that are embedded within data files like this:

line 1
line 2
data table
01000
10110
00011
end table
line 3
line 4

Is there any way to read just the data by telling an input device to start
reading when it encounters the keyword "data table" and stop reading at "end
table"?

Thanks in advance,
Jesse
#
Here is one way to do it:
+ line 2
+ data table
+ 01000
+ 10110
+ 00011
+ end table
+ line 3
+ line 4"))
V1
1  1000
2 10110
3    11
Uses 'textConnection'
On Sat, Jan 24, 2009 at 5:48 PM, jesse daniel <jdlecy at gmail.com> wrote: