| 12345678910111213141516 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:p5="https://biuro.biall-net.pl/wfs"
- exclude-result-prefixes="xs"
- version="2.0">
-
-
- <xsl:function name="p5:primaryKey">
- <xsl:param name="fid"/>
- <xsl:for-each select="tokenize($fid,'\.')">
- <xsl:if test="position() = last()"><xsl:value-of select="."/></xsl:if>
- </xsl:for-each>
- </xsl:function>
-
- </xsl:stylesheet>
|