Thread overview
Text file handling
Mar 18, 2003
Matthew Wilson
Mar 18, 2003
Burton Radons
Mar 18, 2003
Matthew Wilson
March 18, 2003
Is there a succinct way for opening a text file and returning an array containing every character in the file?

Thanks in advance

Matthew


March 18, 2003
Matthew Wilson wrote:
> Is there a succinct way for opening a text file and returning an array
> containing every character in the file?

import file;

file.read (filename);

March 18, 2003
:)

"Burton Radons" <loth@users.sourceforge.net> wrote in message news:b56hko$64d$1@digitaldaemon.com...
> Matthew Wilson wrote:
> > Is there a succinct way for opening a text file and returning an array containing every character in the file?
>
> import file;
>
> file.read (filename);
>