Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
27 lines
865 B
XML
27 lines
865 B
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:str="http://exslt.org/strings"
|
|
exclude-result-prefixes="str">
|
|
|
|
<xsl:template match="/">
|
|
<out>;
|
|
str:tokenize('2001-06-03T11:40:23', '-T:')
|
|
<xsl:copy-of select="str:tokenize('2001-06-03T11:40:23', '-T:')"/>;
|
|
|
|
str:tokenize('date math str')
|
|
<xsl:copy-of select="str:tokenize('date math str')"/>;
|
|
|
|
str:tokenize('This is & strange behavior', ' ')
|
|
<xsl:copy-of select="str:tokenize('This is & strange behavior', ' ')"/>;
|
|
|
|
str:tokenize('This is & strange; behavior', ' ')
|
|
<xsl:copy-of select="str:tokenize('This is & strange; behavior', ' ')"/>;
|
|
|
|
str:tokenize('This is &strange; behavior', ' ')
|
|
<xsl:copy-of select="str:tokenize('This is &strange; behavior', ' ')"/>;
|
|
</out>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|