Text (.txt) File Format
TXT file format
Description
Notes
Examples
A plain text file is a universal format for textual information.
The Export as Plain Text command in the File menu can be used to export a document to a text file.
The Import and Export commands can be used to read and write to text files.
The FileTools[Text] package can be used for more advanced processing of text files.
Content-Type: text/plain
Import a text file into Maple as a string
story≔Import⁡example/UnderTheMaples.txt,base=datadir
story≔Under The Maples, by John Burroughs Chapter I: The Falling Leaves The time of the falling of leaves has come again. Once more in our morning walk we tread upon carpets of gold and crimson, of brown and bronze, woven by the winds or the rains out of these delicate textures while we slept.
StringTools:-WordCount⁡story
54
The command FileTools:-Text:-ReadFile can accomplish the same task.
path≔FileTools:-JoinPath⁡example,UnderTheMaples.txt,base=datadir
path≔/maple/cbat/active/268316/data/example/UnderTheMaples.txt
story≔FileTools:-Text:-ReadFile⁡path
See Also
Export as Plain Text
FileTools[Text]
Formats
Translation of Maple Worksheets to Plain Text
Download Help Document