ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / XML file functions
  • Properties specific to xpathResult variables
  • Miscellaneous
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
xpathResult (Variable type)
In french: xpathRésultat
The xpathResult type is used it find out the result of the execution of an XPATH query. The characteristics of this result are returned by several WLanguage properties.
Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
monXPath is xpathResult
monDoc is xmlDocument = XMLOpen("MonDoc.xml") 
monXPath = XMLExecuteXPath(monDoc, "/Root/fils")
FOR EACH xmlMonFils OF monXPath.Node
	Trace(xmlMonFils..Text)
END
clDoc is xmlDocument = XMLOpen(n, fromString)
c is xpathResult = XMLExecuteXPath(clDoc, "/root")
IF c.IsValue THEN
	Trace(c.Value)
ELSE
	FOR EACH MonNoeud OF c.Node
		Trace("Noeud : " + MonNoeud..Text)
	END
	FOR EACH attrib OF c.Attribute
		Trace("Noeud : " + attrib.Nom)
	END
END
clDoc is xmlDocument = XMLOpen(n, fromString)
c is xpathResult = XMLExecuteXPath(clDoc, "/root/text()")
IF c.IsValue THEN
	Trace(c.Value)
ELSE
	FOR EACH noeud OF c.Node
		Trace("Noeud : " + noeud..Text)
	END
	FOR EACH attrib OF c.Attribute
		Trace("Noeud : " + attrib.Nom)
	END
END
Properties

Properties specific to xpathResult variables

The following properties can be used to handle the result of an XPATH query:
Property nameType usedEffect
AttributeArray of xmlAttributeList of attributes returned by the XPath query.
IsValueBoolean
  • True if the XPath result is a value,
  • False if the XPath result is a set of nodes and/or attributes.
NodeArray of xmlNodeList of nodes returned by the XPath query.
ValueAll typesValue returned if the query returns an integer, boolean or text value. This value can correspond to a string, a boolean or a real.
Remarks

Miscellaneous

  • The list of nodes is not sorted.
  • The standard used for the XPath query is XPath 1.0.
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help