Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
27 lines
708 B
XML
27 lines
708 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:split('a, simple, list', ', ')
|
|
<xsl:copy-of select="str:split('a, simple, list', ', ')"/>
|
|
|
|
str:split('data math str')
|
|
<xsl:copy-of select="str:split('data math str')"/>
|
|
|
|
str:split('foobar', '')
|
|
<xsl:copy-of select="str:split('foobar', '')"/>
|
|
|
|
str:split('-*- hello - world -*-', '-')
|
|
<xsl:copy-of select="str:split('-*- hello - world -*-', '-')"/>
|
|
|
|
str:split('data &math str;')
|
|
<xsl:copy-of select="str:split('data &math str;')"/>
|
|
</out>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|