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

RE: only two chars after a slash

Subject: RE: only two chars after a slash
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Wed, 13 Apr 2005 22:38:02 +0100
substring before slash
You're trying to nest XSLT instructions inside an XPath expression, which
doesn't work - it has to be the other way around.

You want something like

<xsl:template match="xxxxx">
<xsl:value-of select="
   concat(
     substring-before(., '/'),
     '/',
     substring(substring-after(., '/'), 1, 2)
   )"/>
</xsl:template> 

Obviously to make this work you have to integrate it into a stylesheet that
matches the appropriate node in your source document.

Michael Kay
http://www.saxonica.com/

> -----Original Message-----
> From: henry human [mailto:henry_human@xxxxxxxx] 
> Sent: 13 April 2005 22:03
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: RE:  only two chars after a slash
> 
> i get only text (concat(substring-be....) in browser
> with:
> concat( substring-before(<xsl:value-of
> select="prodAmount"/>, '/'), '/', 
> substring(substring-after(<xsl:value-of
> select="prodAmount"/>, '/'), 1, 2))
> ??
> 
> 
> 
> 
> 
> --- Michael Kay <mike@xxxxxxxxxxxx> wrote:
> > concat(
> >  substring-before($x, '/'),
> >  '/',
> >  substring(substring-after($x, '/'), 1, 2)
> > )

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.