Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

XML.SetPathCData

Sets path value with CData.

Component Version macOS Windows Linux Server iOS SDK
XML 11.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "XML.SetPathCData"; XML; Path; Flags; CData )   More

Parameters

Parameter Description Example
XML The XML to process.
Can be XML as text or the reference returned by XML.Parse function, so you can make several times changes to the XML without parsing it each time.
"<test>Hello</test>"
Path The path to the node or attribute to query. "name"
Flags Various Flags.
Add 1 to ignore errors in xml and continue parsing. This may lead to not everything in the xml being read.
Add 4 to format returned XML.
Add 32 to return result as XML.
0
CData The new content of CData. "<b>Hello</b>"

Result

Returns XML, OK or error.

Description

Sets path value with CData.
If needed, new nodes / attributes are added.
This function uses a path notation like the JSON functions in FileMaker to describe paths. Please point with path to new node.
You can use name of a node followed by optional index in square brackets. On the end you can use # followed by a name of an attribute to select only the attribute. Empty brackets or too big index allow you to append new node.
Delimiter between items can be dot like FileMaker or newline.

If you pass in a XML reference number and you do not pass Flag value 32 for returning as XML, we just modify the XML reference in memory. This avoids performance hit for outputting and parsing xml for each change.

Examples

Adds a html encoded name:

MBS("XML.SetPathCData"; "<export><person></person></export>"; "export¶person¶name"; 0; "<b>John Miller</b>")

Example result:
<?xml version="1.0" encoding="UTF-8"?>
<export><person><name><![CDATA[<b>John Miller</b>]]></name></person></export>

See also

Release notes

Blog Entries

This function checks for a license.

Created 26th February 2021, last changed 26th February 2021


XML.ReleaseAll - XML.SetPathValue