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

Online Help

All Products    Maple    MapleSim


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

withWorksheet:

dirkerneloptsmapledir:

mwsReadFilecatdir,/examplesclassic/obj.mws:

typemws,Worksheet:-worksheet

true

(1)

useXMLToolsinElementStatisticsmwsend use

Styles=1,Task=1,Version=1,Label-Scheme=1,View-Properties=1,Worksheet=1,Hyperlink=5,Section=8,Title=10,Layout=33,Group=104,Input=104,Font=110,Text-field=146

(2)

See Also

with

Worksheet

Worksheet[FromString]

XMLTools

XMLTools[WriteFile]