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
XMLTools[AttributeValue] - retrieve the value of an attribute of an XML element
XMLTools[AttributeValueWithDefault] - retrieve the value of an attribute of an XML element, or a specified default value if the attribute is not present
Calling Sequence
AttributeValue(xmlTree, attrName)
AttributeValueWithDefault(xmlTree, attrName, defValue)
Parameters
xmlTree
-
Maple XML tree; XML element
attrName
string; attribute name
defValue
string; default value
Description
The AttributeValue(xmlTree, attrName) command extracts the value of an attribute from the XML element xmlTree. The attribute, whose value is sought, must be specified by its name attrName.
If the attribute attrName is not present in the XML element xmlTree, an error is returned.
Note: Only the attributes that belong to the XML element xmlTree are examined. This function does not examine attributes of any subelements.
The AttributeValueWithDefault(xmlTree, attrName, defValue) command is similar to AttributeValue, except that it takes a third argument defValue. The defValue parameter is a string that specifies a default value for the named attribute attrName if it is not present in the element represented by xmlTree.
Note: Only the attributes that belong to the XML element xmlTree are examined. As in the case of AttributeValue, this function does not examine attributes of any subelements.
Examples
Error, (in XMLTools:-AttributeValue) there is no attribute `color' in the given element
See Also
XMLTools, XMLTools[Attributes], XMLTools[HasAttributes]
Download Help Document