ValueDefault (XmlDoc/XmlNode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
<span style="font-size:120%; color:black"><b>String-value of selected node (allow empty XPath result)</b></span>
{{Template:XmlDoc/XmlNode:ValueDefault subtitle}}
[[Category:XmlDoc methods|ValueDefault function]]
[[Category:XmlDoc methods|ValueDefault function]]
[[Category:XmlNode methods|ValueDefault function]]
[[Category:XmlNode methods|ValueDefault function]]
Line 15: Line 15:
ValueDefault provides an optional argument to use as a return value if the XPath
ValueDefault provides an optional argument to use as a return value if the XPath
expression that designates the node to process is empty.
expression that designates the node to process is empty.
===Syntax===
==Syntax==
  %str = nr:ValueDefault([Xpath], [default])
{{Template:XmlDoc/XmlNode:ValueDefault syntax}}
 
===Syntax terms===
====Syntax Terms====
<dl>
<dl>
<dt>%str
<dt>%str
Line 42: Line 41:


</dl>
</dl>
===Usage Notes===
==Usage notes==
<ul>
<ul>
<li>As of ''Sirius Mods'' version 7.3, the ValueDefault string arguments and result
<li>As of ''Sirius Mods'' version 7.3, the ValueDefault string arguments and result

Revision as of 16:57, 22 January 2011

String-value of selected node (allow empty XPath) (XmlDoc and XmlNode classes)

ValueDefault is a member of the XmlDoc and XmlNode classes.

The ValueDefault function obtains a substring of the string-value of a node, including its Text descendants. ValueDefault provides an optional argument to use as a return value if the XPath expression that designates the node to process is empty.

Syntax

%unicode = nr:ValueDefault[( [xpath], [value])] Throws XPathError

Syntax terms

%str
A Unicode string variable for the returned substring or for the default value. Prior to Sirius Mods version 7.6, this is an EBCDIC string.
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 head of the nodelist is the node to process. This is an optional argument whose default is a period (.), that is, the node referenced by the method object (nr). Prior to Sirius Mods version 7.6, this argument is an EBCDIC string.
default
A Unicode string expression to use as the result of ValueDefault if the result of XPath is the empty nodelist. An optional argument, its default is the null string. Prior to Sirius Mods version 7.6, this argument is an EBCDIC string.

Usage notes

  • As of Sirius Mods version 7.3, the ValueDefault string arguments and result may include only non-null EBCDIC characters that translate to Unicode. As of Sirius Mods version 7.6, these strings are Unicode or are converted to Unicode. For more information about the effects of this version 7.6 change, see Strings and Unicode.

Example

The following example displays the default string, a single underscore ( _ ) character:

    Begin
    %d Object XmlDoc
    %d = New
    %d:LoadXml('<t>Test</t>')
    Print %d:ValueDefault('/x', '_')
    End

Request-Cancellation Errors

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


See Also

  • Value discusses the string-value of various node types.
  • For more information about using XPath expressions, see XPath.