Worksheet
ReadFile
parse a worksheet into an XML data structure
Calling Sequence
Parameters
Description
Examples
ReadFile( filename, format=output_format )
filename
-
string; name of a worksheet file
format=output_format
(optional) equation; output_format can be either "maple8_xml" or "mw" (default)
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.
with⁡Worksheet:
dir≔kernelopts⁡mapledir:
mws≔ReadFile⁡cat⁡dir,/examplesclassic/obj.mws:
type⁡mws,Worksheet:-worksheet
true
useXMLToolsinElementStatistics⁡mwsend 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
See Also
with
Worksheet[FromString]
XMLTools
XMLTools[WriteFile]
Download Help Document