Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
XMLTools[Print] - print an XML document with elements indented
XMLTools[PrintToFile] - print an XML document with elements indented to a disk file
XMLTools[PrintToString] - print an XML document with elements indented to a string
Calling Sequence
Print(xmlTree)
PrintToFile(fileName, xmlTree)
PrintToString(xmlTree)
Parameters
xmlTree
-
Maple XML tree or a string; XML document
fileName
string; filename
Description
The Print(xmlTree) command formats an XML document so that its elements are indented as it is displayed on the default display device.
The PrintToFile(fileName, xmlTree) command is similar to the Print command, except that the formatted XML document is written to the file fileName.
The PrintToString(xmlTree) command formats the XML document and returns a Maple string containing the result. This allows you to pass the formatted XML to other procedures that can further process the document.
A string containing valid XML data can be passed in place of a parsed tree data structure, in which case the string is first parsed, and then printed as though the resulting tree were passed directly.
Examples
<a> <!-- An XML comment --> <b c = 'd'>Some Text <here></b> </a>
See Also
filenames, XMLTools, XMLTools[CleanXML], XMLTools[ContentModel], XMLTools[ParseString]
Download Help Document