Table of Contents
List of Examples
buf_size parameterxml_ns parameterxml usageTable of Contents
Maximum size of the XML buffer.
Default value is 4096.
Pseudo-variable for XML document operations using xpath syntax. For more see the Pseudo-Variables Cookbook.
Example 1.3. xml usage
...
$xml(x=>doc)
= '<?xml version="1.0" encoding="UTF-8"?><a><b>test</b></a>';
xlog("content of node b: $xml(x=>xpath:/a/b/text())\n");
$xml(x=>xpath:/a/b) = "1234";
...