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
Worksheet[FromString] - parse a Maple string containing MWS data and convert it to Maple XML tree
Calling Sequence
FromString(str, format=output_format)
Parameters
str
-
string; mws or xml string representing Maple worksheet
format=output_format
(optional) equation; output_format can be either "maple8_xml" or "mw" (default)
Description
The FromString(str) calling sequence parses the input string str, which is assumed to be a valid Maple worksheet. It then converts it to a Maple XML tree.
Errors detected by the parser in this routine are reported, but the parser does not validate the worksheet. Only errors that prevent this routine from converting the input string into an internal XML format are detected.
FromString maps automatically over its arguments, returning an expression sequence of results.
Examples
The following examples demonstrate how a string can be parsed and converted to a Maple XML tree.
The string str is parsed and converted to an XML tree data structure doc by using the FromString command.
The ToString command converts the XML tree data structure doc and returns it as a Maple string str1.
The string str1 is once again parsed and converted to an XML tree data structure by using the FromString command.
The Display command launches the worksheets. The Display command launches the string str1 and the XML tree doc1. For information on Display command parameters, see Worksheet[Display].
See Also
Worksheet, Worksheet[ToString]
Download Help Document