Exists (XmlDoc/XmlNode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 22: Line 22:
<tr><th>XPath</th>
<tr><th>XPath</th>
<td>A Unicode string that is an XPath expression that results in a nodelist. The expression default is a period (.), that is, the node referenced by the method object (<i>nr</i>).
<td>A Unicode string that is an XPath expression that results in a nodelist. The expression default is a period (.), that is, the node referenced by the method object (<i>nr</i>).
Prior to ''Sirius Mods'' version 7.6, this is an EBCDIC string.</td></tr>
<p class="code">Prior to ''Sirius Mods'' version 7.6, this is an EBCDIC string.</td></tr>
</p>
</table>
</table>


Line 41: Line 42:


The following request tests two XPath results:
The following request tests two XPath results:
<pre>
<p class="code">Begin
    Begin
%d Object XmlDoc
    %d Object XmlDoc
%d = New
    %d = New
Print 'Root exist?' And %d:Exists('.'):ToString
    Print 'Root exist?' And %d:Exists('.'):ToString
Print 'Elem of empty doc exist?' And %d:Exists('*'):ToString
    Print 'Elem of empty doc exist?' And %d:Exists('*'):ToString
End
    End
</p>
</pre>


The example results follow:
The example results follow:
<pre>
<p class="code">Root exist? True
    Root exist? True
Elem of empty doc exist? False
    Elem of empty doc exist? False
</p>
</pre>


===Request-Cancellation Errors===
===Request-Cancellation Errors===

Revision as of 05:42, 25 January 2011

Is XPath result non-empty? (XmlDoc and XmlNode classes)

Available as of Sirius Mods version 6.6, this function returns a Boolean enumeration whose value is True if the XPath result is non-empty, and False otherwise.

Syntax

%boolean = nr:Exists( xpath) Throws XPathError

Syntax terms

%bool A declared enumeration object of type Boolean to contain the returned value of Exists.
nr An XmlDoc or XmlNode, used as the context node for the XPath expression. If an XmlDoc, the Root node is the context node.
XPath A Unicode string that is an XPath expression that results in a nodelist. The expression default is a period (.), that is, the node referenced by the method object (nr).

Prior to Sirius Mods version 7.6, this is an EBCDIC string.

Usage notes

  • If you are only checking for the existence of some nodes in the document, Exists is the most efficient method. SelectCount has the relative disadvantage that it may continue to examine the XmlDoc tree after the first matching node is found. SelectSingleNode has a similar disadvantage: it may visit nodes in an order other than the document order, and, since it guarantees to return the first node in XmlDoc order, it may continue even after the first match is found.

Example

The following request tests two XPath results:

Begin %d Object XmlDoc %d = New Print 'Root exist?' And %d:Exists('.'):ToString Print 'Elem of empty doc exist?' And %d:Exists('*'):ToString End

The example results follow:

Root exist? True Elem of empty doc exist? False

Request-Cancellation Errors

  • XPath is invalid.
  • Insufficient free space exists in CCATEMP.

See also

  • For more information about using XPath expressions, see XPath.