|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: select first word
What about:
Jim_Albright@xxxxxxxxxxxx wrote:
make this: <xsl:variable name="from" select="'abcdehijklmnorstuvyz{|HIJKA@'" />
<xsl:variable name="to" select="'aaaaaeeeeiiiioooooEEEEAA'" />
<xsl:value-of select="translate(., $from, $to)" />
and make that (together): <xsl:value-of select="substring-before(substring-before(.,' '), ', ')" /> and, all together now (after the Beatles) <xsl:value-of select="substring-before(substring-before(translate(., $from, $to),' '), ', ')" /> though, in terms of efficiency (and assuming the processor doesn't "see" how to optimize this) you might want this, even: <xsl:value-of select="translate(substring-before(substring-before(.,' '), ', '), $from, $to)" /> for readability you can add whitespace. Now it becomes something like: <xsl:value-of select="
translate(
substring-before(
substring-before(.,' '), ', '),
$from, $to)" />
|
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








