Prefix (XmlDoc/XmlNode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
m (move footer template to actual end; edits, tags and links)
Line 1: Line 1:
{{Template:XmlDoc/XmlNode:Prefix subtitle}}
{{Template:XmlDoc/XmlNode:Prefix subtitle}}
<var>Prefix</var> returns the "prefix" (that is, the part of the name before the colon) of the node that is the head of an XPath result.


This function gets the "prefix" (that is, the part of the name
before the colon) of the node that is the head of an XPath result.
==Syntax==
==Syntax==
{{Template:XmlDoc/XmlNode:Prefix syntax}}
{{Template:XmlDoc/XmlNode:Prefix syntax}}
Line 8: Line 7:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%unicode</th>
<tr><th>%unicode</th>
<td>A string variable for the returned prefix. </td></tr>
<td>A string variable for the returned prefix.</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 Root 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 Root node is the context node.</td></tr>
<tr><th>xpath</th>
<tr><th>xpath</th>
<td>A <var>Unicode</var> string that is an [[XPath#XPath_syntax|XPath expression]] that results in a nodelist. The head of the nodelist is the node to process. An optional argument, its default is a period (<tt>.</tt>), that is, the node referenced by the method object (<i>nr</i>).
<td>A <var>Unicode</var> string that is an [[XPath#XPath_syntax|XPath expression]] that results in a <var>nodelist</var>. The head of the <var>nodelist</var> is the <var>node</var> to process. An optional argument, its default is a period (<code>.</code>), that is, the node referenced by the method object (<var class="term">nr</var>).
 
<p>Prior to <var class="product">[[Sirius Mods]]</var> Version 7.6, this is an EBCDIC string.</p></td></tr>
Prior to <var class="product">Sirius Mods</var> version 7.6, this is an EBCDIC string.</td></tr>
 
</table>
</table>


==Usage notes==
==Usage notes==
<ul>
<ul><li>The prefix is defined to be:
<li>The prefix is defined to be:
<ul><li>The element-type or attribute name prefix if the node is an <var>Element</var> or <var>Attribute</var>, respectively.
<ul>
<li>The element-type or attribute name prefix
if the node is an <var>Element</var> or <var>Attribute</var>, respectively.
<li>The null string, otherwise.
<li>The null string, otherwise.
</ul>
</ul>
<li>This function may only be used if the <var>XmlDoc</var>'s <var>[[Namespace (XmlDoc property)|Namespace]]</var> property is <var>On</var>.
<li>This function may only be used if the <var>XmlDoc</var>'s <var>[[Namespace (XmlDoc property)|Namespace]]</var> property is <code>On</code>.
</ul>
</ul>


===Example===
==Examples==
 
<ol><li>In the following example, two nodes are added to an <var>XmlDoc</var> and their name prefixes, one of which is the null string, are printed.
In the following example, two nodes are added to an <var>XmlDoc</var> and their name
<p class="code">begin
prefixes, one of which is the null string, are printed.
  %d object xmlDoc
<p class="code">Begin
  %d = new
%d Object XmlDoc
  %n1 object xmlNode
%d = New
  %n1 = %d:[[AddElement_(XmlDoc/XmlNode_function)|addElement]]('foo:bar', , 'ftp:here')
%n1 Object XmlNode
  print 'Prefix =' and %n1:prefix
%n1 = %d:AddElement('foo:bar', , 'ftp:here')
  %n1 = %n1:addElement('junk')
Print 'Prefix =' And %n1:Prefix
  print 'Prefix =' and %n1:prefix
%n1 = %n1:AddElement('junk')
end
Print 'Prefix =' And %n1:Prefix
End
</p>
</p>
The example result follows:
The example result follows:
<p class="output">Prefix = foo
<p class="output">Prefix = foo
Prefix =
Prefix =
</p>
</p></ol>


===Request-Cancellation Errors===
==Request-Cancellation Errors==
<ul>
<ul>
<li><var>XmlDoc</var> <var>Namespace</var> property not <var>On</var>.
<li><var>XmlDoc</var> <var>Namespace</var> property not <var>On</var>.
Line 58: Line 49:


==See also==
==See also==
{{Template:XmlDoc/XmlNode:Prefix footer}}
<ul>
<ul>
<li>For more information about using XPath expressions, see [[XPath|"XPath"]].
<li>For more information about using XPath expressions, see [[XPath|"XPath"]].
Line 68: Line 58:
</ul>
</ul>
</ul>
</ul>
{{Template:XmlDoc/XmlNode:Prefix footer}}

Revision as of 02:59, 29 May 2011

Prefix part of name of selected node (XmlDoc and XmlNode classes)

Prefix returns the "prefix" (that is, the part of the name before the colon) of the node that is the head of an XPath result.

Syntax

%unicode = nr:Prefix[( [xpath])] Throws XPathError

Syntax terms

%unicode A string variable for the returned prefix.
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. An optional argument, its 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

  • The prefix is defined to be:
    • The element-type or attribute name prefix if the node is an Element or Attribute, respectively.
    • The null string, otherwise.
  • This function may only be used if the XmlDoc's Namespace property is On.

Examples

  1. In the following example, two nodes are added to an XmlDoc and their name prefixes, one of which is the null string, are printed.

    begin %d object xmlDoc %d = new %n1 object xmlNode %n1 = %d:addElement('foo:bar', , 'ftp:here') print 'Prefix =' and %n1:prefix %n1 = %n1:addElement('junk') print 'Prefix =' and %n1:prefix end

    The example result follows:

    Prefix = foo Prefix =

Request-Cancellation Errors

  • XmlDoc Namespace property not On.
  • xpath is invalid.
  • Result of xpath is empty.
  • Insufficient free space exists in CCATEMP.

See also

  • For more information about using XPath expressions, see "XPath".
  • These methods also obtain information about the name of a node: