XPath - Operatori / funzioni numerici
XPath definisce i seguenti operatori sui numeri da utilizzare con le espressioni XPath.
S.No. | Operatore e descrizione |
---|---|
1 | + utilizzato per l'operazione di aggiunta |
2 | - utilizzato per l'operazione di sottrazione |
3 | * utilizzato per l'operazione di moltiplicazione |
4 | div utilizzato per il funzionamento della divisione |
5 | mod utilizzato per il funzionamento modulo |
XPath definisce le seguenti funzioni sui numeri da utilizzare con le espressioni XPath.
S.No. | Descrizione della funzione |
---|---|
1 | ceiling() restituisce il numero intero più piccolo maggiore del valore fornito. |
2 | floor() restituisce il numero intero più grande minore del valore fornito. |
3 | round() restituisce il valore arrotondato al numero intero più vicino. |
4 | sum() restituisce la somma di due numeri. |
Esempio
Questo esempio crea una tabella dell'elemento <student> con il suo attributo roll no e il suo figlio <firstname> ,<lastname> <nickname> e <marks> ripetendo ogni studente. Calcola i voti dello studente e quindi stampa i dettagli degli studenti.
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>Roll No</th>
<th>First Name</th>
<th>Last Name</th>
<th>Nick Name</th>
<th>Marks</th>
<th>Grade</th>
</tr>
<xsl:for-each select = "class/student">
<tr>
<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>
<td>
<xsl:choose>
<xsl:when test = "marks div 90 > 1">
High
</xsl:when>
<xsl:when test = "marks div 80 > 1">
Medium
</xsl:when>
<xsl:otherwise>
Low
</xsl:otherwise>
</xsl:choose>
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>