source: xslt/vendor/current/tests/exslt/strings/tokenize.2.xsl@ 372

Last change on this file since 372 was 372, checked in by Yuri Dario, 13 years ago

xslt: initial vendor import of xslt 1.1.26.

File size: 567 bytes
Line 
1<?xml version="1.0"?>
2<xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:str="http://exslt.org/strings"
5 extension-element-prefixes="str">
6
7<xsl:template match="/">
8<xsl:for-each select="str:tokenize('This is strange behavior', ' ')" >
9 <tok><xsl:value-of select="."/></tok>
10</xsl:for-each>
11</xsl:template>
12
13</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.