Re: How to use delimiters in Standard Additions file read/write
Re: How to use delimiters in Standard Additions file read/write
- Subject: Re: How to use delimiters in Standard Additions file read/write
- From: Devon and Cornwall <email@hidden>
- Date: Wed, 21 Mar 2001 20:52:50 -0800
At 5:52 PM -0800 3/20/01, Chris Nebel wrote:
>
read file "f" as text using delimiter " "
>
--> {"This", "is", "a", "test"}
Thank you for the information Chris.
Is there any difference between the following constructs and your
example? Is it a case of: "Do you like your eggs over easy or sunny
side up?" They return the same result.
read file "f" using delimiter " "
--> {"This", "is", "a", "test"}
Or
read file "f" as text using delimiter {" "}
--> {"This", "is", "a", "test"}
read file "f" using delimiter {" "}
--> {"This", "is", "a", "test"}
Devon