For the complete documentation index, see llms.txt. This page is also available as Markdown.

XPathList

The XPathList() function executes the given XPath query on XML text and returns the result as a text array.

Follow this link to learn more about XPath.

This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.

Syntax

XPathList(xml,xpath)

XPathList([Settings.BookStoreXml], "//book/price[text()]") => 30.00, 29.99, 49.99, 39.95

Parameters

Name
Type
Required
Description

xml

text

☑️

Text that contains XML

xpath

text

☑️

Text that contains an XPath query

Last updated

Was this helpful?