xsl-list
[Top] [All Lists]

Re: [xsl] Re: How to strip partial text?

2006-03-17 04:24:36
On 3/17/06, Gerard Bierens <gerard(_dot_)bierens(_at_)gmail(_dot_)com> wrote:
I'm giving out a monthly list of new library books, and now the idea
is to add amazon images for the bookcovers. This code below should do
the trick:


 <xsl:element name="img">
   <xsl:attribute name="src">
http://images.amazon.com/images/P/<xsl:value-of select="isbn/isbnprim"
/>.01.THUMBZZZ</xsl:attribute>
 </xsl:element>

Now, in the xml file there is a field for the neccecary ISBN-number,
the problem only is that the default output of that field looks like
this: ISBN 0596005423. To get this to work, I need to strip off the
'ISBN ' part. My knowledge of XSL is too limited to get this working,
anybody want to help me out here?


Use substring-after()

cheers
andrew

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--