XPath - Funções de Nó
XPath define os seguintes operadores em nós a serem usados com as expressões XPath.
| S.No. | Operador e descrição |
|---|---|
| 1 | / usado para selecionar o nó em um nó específico. |
| 2 | // usado para selecionar o nó do nó raiz |
| 3 | [...] usado para verificar o valor do nó |
| 4 | | usado para união de dois conjuntos de nós |
XPath define as funções a seguir em nós a serem usados com as expressões XPath.
| S.No. | Descrição da função |
|---|---|
| 1 | comment() seleciona nós que são comentários. |
| 2 | node() seleciona todos os tipos de nós. |
| 3 | processing-instruction() seleciona nós que estão processando instrução. |
| 4 | text() seleciona um nó de texto. |
| 5 | name() fornece o nome do nó. |
| 6 | position() fornece a posição do nó. |
| 7 | last() seleciona o último nó relativo ao nó atual; |
Exemplo
Este exemplo cria uma tabela do elemento <student> com seus detalhes, iterando sobre cada aluno. Ele calcula a posição do nó do aluno e depois imprime os detalhes do (s) aluno (s) junto com o número de série.
students.xml
<?xml version = "1.0"?>
<?xml-stylesheet type = "text/xsl" href = "students.xsl"?>
<class>
<student rollno = "393">
<firstname>Dinkar</firstname>
<lastname>Kad</lastname>
<nickname>Dinkar</nickname>
<marks>85</marks>
</student>
<student rollno = "493">
<firstname>Vaneet</firstname>
<lastname>Gupta</lastname>
<nickname>Vinni</nickname>
<marks>95</marks>
</student>
<student rollno = "593">
<firstname>Jasvir</firstname>
<lastname>Singh</lastname>
<nickname>Jazz</nickname>
<marks>90</marks>
</student>
</class>
students.xsl
<?xml version = "1.0" encoding = "UTF-8"?>
<xsl:stylesheet version = "1.0"
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform">
<xsl:template match = "/">
<html>
<body>
<h2>Students</h2>
<table border = "1">
<tr bgcolor = "#9acd32">
<th>Serial No</th>
<th>Roll No</th>
<th>First Name</th>
<th>Last Name</th>
<th>Nick Name</th>
<th>Marks</th>
</tr>
<xsl:for-each select = "class/student">
<tr>
<td><xsl:value-of select = "position()"/></td>
<td><xsl:value-of select = "@rollno"/></td>
<td><xsl:value-of select = "firstname"/></td>
<td><xsl:value-of select = "lastname"/></td>
<td><xsl:value-of select = "nickname"/></td>
<td><xsl:value-of select = "marks"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Verifique a saída