Read File - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

Worksheet

  

ReadFile

  

parse a worksheet into an XML data structure

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ReadFile( filename, format=output_format )

Parameters

filename

-

string; name of a worksheet file

format=output_format

-

(optional) equation; output_format can be either "maple8_xml" or "mw" (default)

Description

• 

The ReadFile command parses a worksheet, returning an XML data structure that represents the worksheet. It requires a single argument filename that must be a Maple string and is assumed to name a worksheet file. The file is opened, and its contents read and parsed. The parsed worksheet is converted to an XML data structure that can be used with the XMLTools package. The XML document structure returned by this procedure is of type Worksheet:-worksheet.

• 

You can save a worksheet in XML format by using the procedure WriteFile in the XMLTools package.

  

Note: Maple worksheets (.mw) files are saved in an XML-based format. You can display the structure of a Maple worksheet in XML applications.

Examples

(1)

(2)

See Also

with

Worksheet

Worksheet[FromString]

XMLTools

XMLTools[WriteFile]

 


Download Help Document