Exists (XmlDoc/XmlNode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
{{Template:XmlDoc/XmlNode:Exists subtitle}}
{{Template:XmlDoc/XmlNode:Exists subtitle}}
<var>Exists</var> returns a [[Enumerations#Using_Boolean_enumerations|"Boolean Enumeration"]] whose value is <code>True</code> if the XPath result is non-empty, and <code>False</code> otherwise.
<var>Exists</var> returns a [[Enumerations#Using_Boolean_enumerations|Boolean enumeration]] whose value is <var>True</var> if the XPath result is non-empty, and <var>False</var> otherwise.


==Syntax==
==Syntax==
Line 7: Line 7:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%boolean</th>
<tr><th>%boolean</th>
<td>A declared enumeration object of type <var>[[Enumerations#Using Boolean enumerations|Boolean]]</var> to contain the returned value of <var>Exists</var>.</td></tr>
<td>A declared enumeration object of type <var>Boolean</var> to contain the returned value of <var>Exists</var>.</td></tr>
<tr><th>nr</th>
<tr><th>nr</th>
<td>An <var>XmlDoc</var> or <var>XmlNode</var>, used as the context node for the <var class="term">XPath</var> expression. If an <var>XmlDoc</var>, the <var>Root</var> node is the context node.</td></tr>
<td>An <var>XmlDoc</var> or <var>XmlNode</var>, used as the context node for the <var class="term">XPath</var> expression. If an <var>XmlDoc</var>, the <var>Root</var> node is the context node.</td></tr>
Line 18: Line 18:
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>If you are only checking for the existence of some nodes in the document, <var>Exists</var> is the most efficient method.
<li>If you are only checking for the existence of some nodes in the document, <var>Exists</var> is the most efficient method:
<ul><li><var>[[SelectCount (XmlDoc/XmlNode function)|SelectCount]]</var> has the relative disadvantage that it may continue to examine the <var>XmlDoc</var> tree after the first matching node is found.
<ul><li><var>[[SelectCount (XmlDoc/XmlNode function)|SelectCount]]</var> has the relative disadvantage that it may continue to examine the <var>XmlDoc</var> tree after the first matching node is found.
<li><var>[[SelectSingleNode (XmlDoc/XmlNode function)|SelectSingleNode]]</var> 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 <var>XmlDoc</var> order, it may continue even after the first match is found.
<li><var>[[SelectSingleNode (XmlDoc/XmlNode function)|SelectSingleNode]]</var> 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 <var>XmlDoc</var> order, it may continue even after the first match is found.
</ul></ul>
</ul></ul>


===Examples===
==Examples==
<ol><li>The following request tests two XPath results:
The following request tests two XPath results:
<p class="code">begin
<p class="code">begin
   %d object xmlDoc
   %d object xmlDoc
Line 35: Line 35:
<p class="code">Root exist? True
<p class="code">Root exist? True
Elem of empty doc exist? False
Elem of empty doc exist? False
</p></ol>
</p>


===Request-Cancellation Errors===
==Request-Cancellation Errors==
<ul>
<ul>
<li><var class="term">xpath</var> is invalid.
<li><var class="term">xpath</var> is invalid.

Revision as of 23:44, 24 May 2011

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

Exists 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

%boolean 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.

Examples

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".