Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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