| namespace-uri() 関数 | |
| パラメータノードセットの最初のノードの名前空間 URI を返します。 | |
| 入力 | |
|
ノードセット。ノードセットを省略した場合、namespace-uri() 関数はコンテキストノードがその唯一のメンバーであるノードセットを作成します。 |
|
| 出力 | |
|
パラメータノードセットの最初のノードの名前空間 URI。パラメータノードセットが空である、最初のノードには名前空間 URI がない、または最初のノードに null の名前空間 URI がある場合は、空の文字列が返されます。namespace-uri() 関数は、要素および属性ノード以外のすべてのノードに空の文字列を返します。 |
|
| 定義先 | |
|
XPath 4.1 節「ノードセット関数」 |
|
| 例 | |
|
document() 関数を使用して固有のノードを調べ、各ノードに対して namespace-uri() を呼び出すスタイルシートを次に示します。
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:months="Lookup table for month names">
<months:name sequence="01">January</months:name>
<months:name sequence="02">February</months:name>
<months:name sequence="03">March</months:name>
<months:name sequence="04">April</months:name>
<months:name sequence="05">May</months:name>
<months:name sequence="06">June</months:name>
<months:name sequence="07">July</months:name>
<months:name sequence="08">August</months:name>
<months:name sequence="09">September</months:name>
<months:name sequence="10">October</months:name>
<months:name sequence="11">November</months:name>
<months:name sequence="12">December</months:name>
<xsl:output method="text"/>
<xsl:variable name="newline">
<xsl:text>
</xsl:text>
</xsl:variable>
<xsl:template match="/">
<xsl:value-of select="$newline"/>
<xsl:text>A test of the namespace-uri() function:</xsl:text>
<xsl:value-of select="$newline"/>
<xsl:value-of select="$newline"/>
<xsl:for-each select="document('')//*">
<xsl:text>namespace URI: </xsl:text>
<xsl:value-of select="namespace-uri()"/>
<xsl:value-of select="$newline"/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
このスタイルシートの結果は次のとおりです。 A test of the namespace-uri() function: namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: Lookup table for month names namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform namespace URI: http://www.w3.org/1999/XSL/Transform |
|