|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Splitting attributes
Endre Magyari wrote:
In my source XML I have elements with IDREFS attributes, like: You can make use substring-before($value, ' ') function recursively to get tokens. I'd better use standard templates either from exslt[1] or fxsl[2] libraries, but just to give you idea, here is a sample template: <xsl:template match="Class"> <xsl:call-template name="tokenize"> <xsl:with-param name="str" select="normalize-space(@subtypes)"/> </xsl:call-template> </xsl:template> <xsl:template name="tokenize"> <xsl:param name="str"/> <xsl:if test="string-length($str) > 0"> <token> <xsl:choose> <xsl:when test="contains($str, ' ')"> <xsl:value-of select="substring-before($str, ' ')"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="$str"/> </xsl:otherwise> </xsl:choose> </token> <xsl:call-template name="tokenize"> <xsl:with-param name="str" select="normalize-space(substring-after($str, ' '))"/> </xsl:call-template> </xsl:if> </xsl:template> [1] http://www.exslt.org/str/functions/tokenize/index.html [2] http://www.topxml.com/xsl/articles/dice/#res3 -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








