[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: tokenize() a string and then create a node-set

Subject: RE: tokenize() a string and then create a node-set
From: "Bjorndahl, Brad" <brad.bjorndahl@xxxxxxxxxxxxxxxx>
Date: Fri, 1 Jun 2007 10:42:44 -0400
RE:  tokenize() a string and then create a node-set
Hi,

Something like this should work. This assumes there are at least 2
substrings in $string.

<xsl:variable name="splitName" select="tokenize($string,' ')" />

<firstname><xsl:value-of select="$splitName[1]" /></firstname>

<lastname><xsl:value-of select="$splitName[last()]" /></lastname>

<xsl:choose>
  <xsl:when test="count($splitName) gt 2" >
    <midname><xsl:value-of select="for $c in (2 to last()-1) return
$splitName[$c]" /></midname>
  </xsl:when>
  <xsl:otherwise>
    <midname />
  </xsl:otherwise>
</xsl:choose>

This is not tested. I forget if you'll get spaces between midname
substrings, but I think so.
If not, you can "return ($splitName[$c],' ')".

Brad


-----Original Message-----
From: hajduk@xxxxxxxx [mailto:hajduk@xxxxxxxx]
Sent: June 1, 2007 10:21 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject:  tokenize() a string and then create a node-set

Haven't used the tokenize() function and just wanted a bit of insight.

Note, could create a called-template plus a user defined function(s) to
do the following but want to see if there is an easier/other way to do
it.

I want to take a string containing a person's name and break it apart
based on a space. Then parse the result as follows. If position is first
then <firstname>, if position is last then <lastname> else <midname>.

Can this be done using a <for-each select="tokenize($string, ' ')"> with
a <choose>|<if> statement inside?

Any ideas will be greatly appreciated.

Marijan Madunic

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.